:root {
    --google-blue: #1a73e8;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --dark-text: #202124;
    --light-text: #5F6368;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 2px 8px rgba(60, 64, 67, 0.1);
    --shadow-hover: 0 8px 30px rgba(60, 64, 67, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-ai: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.video-card.active .play-button-overlay {
    opacity: 1;
    pointer-events: auto;
}

.video-card.active.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button-overlay:hover {
    background: rgba(66, 133, 244, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
    width: 32px;
    height: 32px;
    fill: white;
    color: white;
    margin-left: 4px;
    /* Optical adjustment for play icon */
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-ai {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes letterBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger delay classes */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Lucide icon styling */
[data-lucide] {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.hero-badge [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--google-blue);
}

.btn-primary [data-lucide],
.btn-secondary [data-lucide] {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover [data-lucide] {
    transform: translateX(3px);
}

.footer-social [data-lucide] {
    width: 20px;
    height: 20px;
}

/* Icon wrapper for Lucide icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 24px;
    height: 24px;
}

.icon-sm svg {
    width: 18px;
    height: 18px;
}

.icon-lg svg {
    width: 32px;
    height: 32px;
}

.icon-xl svg {
    width: 48px;
    height: 48px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
    border-bottom: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: 'Product Sans', 'Google Sans', 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    letter-spacing: -0.5px;
}

.logo-text span {
    transition: transform 0.2s ease;
}

.logo:hover .logo-text span {
    animation: letterBounce 0.4s ease;
}

.logo-text span:nth-child(1) {
    color: #4285F4;
    animation-delay: 0s;
}

.logo-text span:nth-child(2) {
    color: #EA4335;
    animation-delay: 0.05s;
}

.logo-text span:nth-child(3) {
    color: #FBBC05;
    animation-delay: 0.1s;
}

.logo-text span:nth-child(4) {
    color: #4285F4;
    animation-delay: 0.15s;
}

.logo-text span:nth-child(5) {
    color: #34A853;
    animation-delay: 0.2s;
}

.logo-text span:nth-child(6) {
    color: #EA4335;
    animation-delay: 0.25s;
}

.logo-text span:nth-child(7) {
    color: #4285F4;
    animation-delay: 0.3s;
}

.logo-text span:nth-child(8) {
    color: #34A853;
    animation-delay: 0.35s;
}

.logo-text span:nth-child(9) {
    color: #FBBC05;
    animation-delay: 0.4s;
}

.logo-icon {
    display: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--google-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--google-blue);
}

.nav-links a:hover::after {
    width: 20px;
}

.nav-cta {
    background: var(--google-blue) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5) !important;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 2001;
    /* Higher than mobile-nav */
    border-radius: 50%;
    transition: all 0.3s;
    position: fixed;
    /* Fixed to stay on top of overlay */
    top: 14px;
    right: 24px;
}

.mobile-menu-btn:hover {
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(66, 133, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 67, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(251, 188, 5, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(52, 168, 83, 0.06) 0%, transparent 40%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    top: 5%;
    left: 0;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    top: 50%;
    right: 0;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.12) 0%, transparent 70%);
    animation: float-reverse 10s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 15%;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.12) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 20%;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.12) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--google-blue);
    font-weight: 500;
}

.hero-badge [data-lucide],
.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--google-blue);
}

.hero h1 {
    font-family: 'Product Sans', 'Google Sans', 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 span {
    display: block;
    font-size: 64px;
}

.hero h1 .colored {
    display: inline;
}

.hero h1 .blue {
    color: #4285F4;
}

.hero h1 .red {
    color: #EA4335;
}

.hero h1 .yellow {
    color: #FBBC05;
}

.hero h1 .green {
    color: #34A853;
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons i,
.hero-buttons svg,
.hero-buttons [data-lucide] {
    margin-right: 0 !important;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--google-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1a73e8;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

.btn-primary .material-icons {
    font-size: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover .material-icons {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--google-blue);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #dadce0;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #dadce0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 12px;
    animation: fadeIn 2s ease-out 1s both;
    z-index: 5;
}

.scroll-indicator .arrow {
    width: 32px;
    height: 32px;
    position: relative;
    animation: bounce-arrow 2s infinite;
}

.scroll-indicator .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--google-blue);
}

.scroll-indicator .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid white;
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.stat-value {
    display: block;
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: var(--google-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag.ai {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
}

.section-title {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 120px 24px;
    background: var(--bg-white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
}

.about-text .btn-primary {
    background: var(--google-blue);
    color: white;
    margin-top: 16px;
}

.about-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float-reverse 8s ease-in-out infinite;
}

.about-image svg,
.about-image [data-lucide] {
    width: 140px;
    height: 140px;
    color: white;
    opacity: 0.95;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.about-feature span {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-text);
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-dot.blue {
    background: var(--google-blue);
}

.feature-dot.red {
    background: var(--google-red);
}

.feature-dot.yellow {
    background: var(--google-yellow);
}

.feature-dot.green {
    background: var(--google-green);
}

.feature-dot.purple {
    background: #667eea;
}

/* Services Section */
.services {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card.ai-card::before {
    background: var(--gradient-ai);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-number {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.service-card.ai-card .service-number {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-card:hover .service-number {
    opacity: 0.6;
}

.service-card h3 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--google-blue);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 10px;
    color: #1a73e8;
}

/* AI Videos Section */
.ai-videos {
    padding: 80px 24px 120px 24px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    contain: paint;
}

.ai-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.ai-videos .section-header {
    position: relative;
    z-index: 2;
}

.ai-videos .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #a5b4fc;
}

.ai-videos .section-title {
    color: white;
}

.ai-videos .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 30px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.video-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 120px 0;
    overflow: visible;
    height: 800px;
}

.video-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    position: absolute;
    width: 240px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(0) scale(0.5);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-card.active {
    opacity: 1;
    transform: translateX(0) scale(1.15);
    z-index: 10;
    pointer-events: auto;
    border-color: #4285F4;
    box-shadow: 0 30px 80px rgba(66, 133, 244, 0.6);
}

.video-card.prev {
    opacity: 0.2;
    transform: translateX(-240px) scale(0.7);
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
    filter: brightness(0.5);
}

.video-card.next {
    opacity: 0.2;
    transform: translateX(240px) scale(0.7);
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
    filter: brightness(0.5);
}

.video-card.prev:hover,
.video-card.next:hover {
    opacity: 0.4;
    filter: brightness(0.7);
}

.video-card:hover {
    border-color: rgba(66, 133, 244, 0.5);
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    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 ease;
}

.carousel-btn:hover {
    background: var(--google-blue);
    border-color: var(--google-blue);
}

.carousel-btn.carousel-prev {
    left: 0;
}

.carousel-btn.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--google-blue);
    transform: scale(1.2);
}

.video-wrapper {
    position: relative;
    padding-top: 177.78%;
    /* 9:16 vertical aspect ratio for mobile videos */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    transition: padding-top 0.3s ease;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    gap: 12px;
}

.video-placeholder svg,
.video-placeholder [data-lucide] {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.video-card-content {
    padding: 24px;
}

.video-card-content h3 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.video-card-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Portfolio/Web Section */
.portfolio {
    padding: 100px 24px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-card:hover .portfolio-image::before {
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.6);
}

.portfolio-image::after {
    content: 'Otevřít web';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--google-blue);
    border-radius: 4px;
    text-shadow: none;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.portfolio-card:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.03);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-header h3 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.portfolio-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.2s ease;
    text-decoration: none;
}

.portfolio-link:hover {
    background: var(--google-blue);
    color: white;
}

.portfolio-link [data-lucide] {
    width: 16px;
    height: 16px;
}

.portfolio-testimonial {
    padding: 20px 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent;
    border-radius: 0;
    margin: 0;
}

.portfolio-testimonial::before {
    display: none;
}

.portfolio-testimonial p {
    font-style: italic;
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 12px;
}

/* Portfolio Showcase Image */
.portfolio-showcase {
    margin-top: 60px;
    text-align: center;
}

.portfolio-showcase img {
    max-width: 100%;
    width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-more {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.portfolio-more p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 20px;
}

.portfolio-more a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.portfolio-more a:hover {
    color: var(--google-blue);
    background: rgba(0, 0, 0, 0.05);
}

.portfolio-more span {
    color: var(--light-text);
    font-size: 14px;
    opacity: 0.6;
}

/* Pricing Section */
.pricing {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(66, 133, 244, 0.3);
    box-shadow: 0 20px 40px rgba(66, 133, 244, 0.2);
}

.pricing-card.featured {
    border-color: var(--google-blue);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--google-blue);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
}

.pricing-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.pricing-price span {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--google-green);
    font-weight: bold;
}

.pricing-card .btn-secondary {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.pricing-card .btn-primary {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: var(--google-blue);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
    background: #3367d6;
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Centered */
.contact-wrapper.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.contact-wrapper.contact-centered .contact-info {
    max-width: 600px;
    text-align: center;
}

.contact-wrapper.contact-centered .contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.contact-wrapper.contact-centered .contact-item {
    text-align: center;
}

/* Team Section in Contact */
.contact-team {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.team-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--google-blue);
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.2);
}

.team-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.team-heading h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-text);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.team-member p {
    color: var(--light-text);
    font-size: 14px;
}

@media (max-width: 640px) {
    .contact-wrapper.contact-centered .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-team {
        gap: 40px;
    }
}

/* FAQ Section */
.faq {
    padding: 120px 24px;
    background: var(--bg-light);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: rgba(66, 133, 244, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--google-blue);
}

.faq-question svg,
.faq-question [data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--light-text);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg,
.faq-item.active .faq-question [data-lucide] {
    transform: rotate(180deg);
    color: var(--google-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 120px 24px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-us-text p {
    color: var(--light-text);
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.8;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(66, 133, 244, 0.2);
    transform: translateX(10px);
}

.feature-number {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1.2;
}

.feature-item:hover .feature-number {
    opacity: 0.8;
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Product Sans', 'Google Sans', 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta .btn-primary {
    background: white;
    color: var(--google-blue);
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 10px;
}

.contact-item h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--google-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #1A73E8;
}

.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.form-group label span {
    color: var(--google-red);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--google-blue);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--google-blue), #1A73E8);
    color: white;
    padding: 18px 40px;
    font-size: 16px;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 24px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green), var(--google-yellow), var(--google-red));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Product Sans', 'Google Sans', 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--google-blue);
    transform: translateY(-4px);
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    /* Higher than navbar (1000) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-nav-links a {
    display: block;
    padding: 16px 40px;
    color: var(--dark-text);
    text-decoration: none;
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.mobile-nav-links a:hover {
    color: var(--google-blue);
}

.mobile-nav-links a:hover::after {
    width: 50px;
}

.mobile-nav-cta {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

/* Hamburger */
.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--google-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1a73e8;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
    }

    .about-content,
    .why-us-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-image img {
        height: 350px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 36px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 280px);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding: 0 16px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats {
        margin-top: 0;
        padding-top: 40px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .why-us-image {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* GLOBAL FIX: Prevent horizontal scroll on mobile */
.hero,
.ai-videos,
.services,
.portfolio,
.why-us,
.pricing,
.faq,
.about,
.cta,
.contact,
.footer {
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== Language Switcher ===== */
.lang-switcher-item {
    list-style: none;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    height: 24px;
    /* match icon height roughly */
}



.lang-btn {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 4px 6px;
    transition: all 0.2s ease;
    color: var(--light-text);
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}

/* Override the nav-links underline effect */
.lang-btn::after {
    display: none !important;
}

.lang-btn:hover {
    color: var(--google-blue) !important;
    opacity: 1;
}

.lang-btn.lang-active {
    color: var(--google-blue) !important;
    font-weight: 700;
    pointer-events: none;
    opacity: 1;
}



.lang-sep {
    display: inline-block;
    color: rgba(0, 0, 0, 0.2);
    font-size: 12px;
    margin: 0 2px;
}



/* Mobile language switcher */
.mobile-lang-item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: none;
    /* Reset desktop border */
    justify-content: center;
    margin-left: 0;
    width: 100%;
    height: auto;
}

.mobile-lang-item .lang-btn {
    font-size: 15px;
    padding: 8px 12px;
}