:root {
    --primary-color: #1976d2;
    --primary-light: #42a5f5;
    --primary-dark: #1565c0;
    --secondary-color: #ff6b35;
    --secondary-light: #ff8a65;
    --secondary-dark: #e55100;
    --background-color: #fafafa;
    --surface-color: #ffffff;
    --error-color: #d32f2f;
    --on-primary: #ffffff;
    --on-secondary: #ffffff;
    --on-surface: #000000;
    --on-background: #000000;
    --text-primary: rgba(0, 0, 0, 0.87);
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-disabled: rgba(0, 0, 0, 0.38);
    --elevation-1: 0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12);
    --elevation-2: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
    --elevation-3: 0 3px 3px -2px rgba(0,0,0,0.2), 0 3px 4px 0 rgba(0,0,0,0.14), 0 1px 8px 0 rgba(0,0,0,0.12);
    --elevation-4: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
    --elevation-8: 0 5px 5px -3px rgba(0,0,0,0.2), 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12);
    --border-radius: 4px;
    --border-radius-large: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

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

.header {
    background-color: var(--surface-color);
    box-shadow: var(--elevation-2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    aspect-ratio: 200/65;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu li::before {
    content: none;
}

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

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

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: var(--elevation-2);
}

.btn-primary .btn-text {
    color: #ffffff !important;
}

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

.btn-outlined {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outlined:hover {
    background-color: var(--primary-color);
    color: var(--on-primary);
}

.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

.hero {
    padding: 80px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(255, 107, 53, 0.1));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 14s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: particles 30s linear infinite;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 769px) {
    .hero-container {
        align-items: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: slideInDown 0.8s ease-out;
    width: fit-content;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #3b82f6, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon .material-icons {
    font-size: 14px;
    color: white;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: heroTitleEntry 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6, #ff6b35, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text-white {
    color: white;
}

.hero-title-accent {
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent-white {
    color: white;
}

.hero-subtitle {
    font-family: 'Google Sans Text', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.text-highlight {
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
}

.hero-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
}

.metric-number-white {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.metric-label-white {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

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

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

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #ff6b35);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.proof-text {
    flex: 1;
}

.proof-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.proof-stars .material-icons {
    font-size: 16px;
    color: #fbbf24;
}

.rating {
    margin-left: 8px;
    font-weight: 600;
    color: white;
}

.proof-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.hero-visual {
    position: relative;
    height: 650px;
}

.hero-device {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}

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

.device-screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    border-radius: 16px;
    pointer-events: none;
}

.device-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(20px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-1 .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-2 .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-3 .stat-icon {
    background: linear-gradient(135deg, #ff6b35, #e55100);
}

.stat-3 .notification-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.stat-icon .material-icons {
    font-size: 16px;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    transform: scale(0.8);
    transform-origin: center;
}

.stat-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.stat-3 {
    bottom: 20%;
    left: -8%;
    animation-delay: 4s;
}

.floating-notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: notification 4s ease-in-out infinite;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-1 .notification-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-2 .notification-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-2 .notification-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
}

.notification-icon .material-icons {
    font-size: 20px;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.notification-text {
    font-size: 0.75rem;
    color: #6b7280;
}

.notification-1 {
    top: 25%;
    right: -15%;
    animation-delay: 1s;
}

.notification-2 {
    bottom: 35%;
    right: -18%;
    animation-delay: 3s;
}

@keyframes notification {
    0%, 100% { 
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    10%, 90% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.stats-section {
    padding: 80px 0;
    background-color: var(--surface-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.features-section {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.feature-card {
    background: var(--surface-color);
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--elevation-1);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-8);
}

.feature-card:hover .feature-icon {
    background: rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(25, 118, 210, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 118, 210, 0.2);
    transition: all 0.3s ease;
}

.feature-icon .material-icons {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.feature-card h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    font-family: 'Google Sans Text', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-section .container {
    max-width: 1440px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.service-card:hover .service-content {
    transform: translateY(-8px);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-content h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content p {
    font-family: 'Google Sans Text', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-production {
    background-image: none !important;
}

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

.video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}


.video-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.video-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.video-features {
    list-style: none;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.video-features .material-icons {
    color: var(--primary-color);
    font-size: 20px;
}

.video-player {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--elevation-4);
    cursor: pointer;
    transition: var(--transition);
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: var(--elevation-8);
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(25, 118, 210, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(25, 118, 210, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button .material-icons {
    font-size: 40px;
    color: white;
    margin-left: 4px;
}

.discount-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.discount-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.discount-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.discount-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.discount-offer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.offer-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}

.offer-percent {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-strikethrough {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    text-decoration-color: #ff6b35;
    text-decoration-thickness: 3px;
    position: relative;
}

.offer-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonial-card {
    background: var(--surface-color);
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--elevation-2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-4);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-form-section * {
    color: inherit;
}

.contact-form-section .contact-info,
.contact-form-section .contact-details,
.contact-form-section .contact-item {
    color: #2d2d2d;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a !important;
}

.contact-info p {
    font-family: 'Google Sans Text', sans-serif;
    font-size: 1.25rem;
    color: #2d2d2d !important;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .material-icons {
    font-size: 24px;
    color: #1976d2;
    margin-top: 4px;
}

.contact-item h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a !important;
}

.contact-item p {
    font-family: 'Google Sans Text', sans-serif;
    color: #2d2d2d !important;
    margin: 0;
    font-weight: 500;
}

.contact-form {
    background: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--elevation-2);
}

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

.form-group {
    position: relative;
}

.input-group,
.textarea-group,
.select-group {
    position: relative;
    margin-bottom: 8px;
}

.input-group input,
.textarea-group textarea,
.select-group select {
    width: 100%;
    padding: 16px 12px 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    background: var(--surface-color);
    transition: var(--transition);
    outline: none;
}

.input-group input:focus,
.textarea-group textarea:focus,
.select-group select:focus {
    border-color: var(--primary-color);
}

.input-group label,
.textarea-group label,
.select-group label {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: var(--transition);
    background: var(--surface-color);
    padding: 0 4px;
    z-index: 1;
}

.input-group input:focus + label,
.input-group input:valid + label,
.textarea-group textarea:focus + label,
.textarea-group textarea:valid + label,
.select-group select:focus + label,
.select-group select:valid + label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    z-index: 2;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.input-group input:focus ~ .focus-border,
.textarea-group textarea:focus ~ .focus-border,
.select-group select:focus ~ .focus-border {
    width: 100%;
}

.select-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    color: var(--text-primary);
    position: relative;
    z-index: 0;
}

.select-group select option {
    color: var(--text-primary);
    background-color: var(--surface-color);
}

.select-group select:invalid {
    color: var(--text-secondary);
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    margin-top: 16px;
}

.btn-loader {
    display: none;
}

.btn-loader .material-icons {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-error {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 4px;
}

.form-success {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    display: none;
}

.cta-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Google Sans', sans-serif;
    margin-bottom: 32px;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1976d2, #ff6b35);
    border-radius: 1px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section p {
    font-family: 'Google Sans Text', sans-serif;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem;
    font-weight: 400;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.footer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.footer-section ul li a {
    font-family: 'Google Sans Text', sans-serif;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #1976d2, #ff6b35);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
}

.footer .contact-info .material-icons {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-family: 'Google Sans Text', sans-serif;
    font-size: 0.9rem;
}

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

@keyframes heroTitleEntry {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(2px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(10px) scale(0.98);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--surface-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--elevation-4);
        padding: 32px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding: 80px 0 100px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-metrics {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-xl {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-device {
        height: 80%;
    }

    .floating-stat {
        min-width: 140px;
        padding: 12px;
        gap: 10px;
        transform: scale(0.9) !important;
        opacity: 0.95;
        pointer-events: none;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon .material-icons {
        font-size: 20px;
    }

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

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

    .floating-notification {
        min-width: 130px;
        padding: 10px;
        transform: scale(0.85) !important;
        opacity: 0.9;
        pointer-events: none;
    }

    .notification-icon {
        width: 32px;
        height: 32px;
    }

    .notification-icon .material-icons {
        font-size: 16px;
    }

    .notification-title {
        font-size: 0.75rem;
    }

    .notification-text {
        font-size: 0.7rem;
    }

    .stat-1 {
        left: 2%;
        top: -15%;
    }
    
    .stat-3 {
        left: 5%;
        bottom: -18%;
    }

    .stat-2 {
        right: 2%;
        top: -12%;
    }

    .notification-1 {
        right: 5%;
        top: -18%;
    }
    
    .notification-2 {
        right: 8%;
        bottom: -15%;
    }

    /* Adjust floating elements on very small screens */
    @media (max-width: 480px) {
        .notification-1 {
            display: none;
        }
        
        .stat-1 {
            left: 5%;
            top: -20%;
        }
        
        .stat-2 {
            right: 5%;
            top: -20%;
        }
        
        .stat-3 {
            left: 8%;
            bottom: -25%;
        }
        
        .notification-2 {
            right: 8%;
            bottom: -25%;
        }
    }

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

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

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

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 16px;
    }


    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-text h2 {
        font-size: 2rem;
    }

    .video-thumbnail img {
        height: 250px;
    }

    .discount-offer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-percent {
        font-size: 2.5rem;
    }

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

    .testimonial-content p::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }


    .discount-content h2 {
        font-size: 2rem;
    }

    .video-features {
        margin-bottom: 24px;
    }

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

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-details {
        gap: 24px;
    }

    .contact-item {
        gap: 12px;
    }

    .form {
        gap: 20px;
    }

    .checkbox-text {
        font-size: 13px;
    }
}

.card {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    box-shadow: var(--elevation-1);
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--elevation-4);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    display: flex;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.service-card {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: relative;
    overflow: hidden;
}

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

.ripple:active::before {
    width: 300px;
    height: 300px;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.video-placeholder {
    text-align: center;
    padding: 40px;
    background: var(--background-color);
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.video-placeholder .material-icons {
    font-size: 64px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.video-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

/* Performance optimizations */
.hero-visual,
.features-section,
.services-section,
.testimonials-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.service-card,
.feature-card {
    will-change: transform;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}