:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #4285f4;
    --logo-bg: #1E2EFF;
    --secondary: #34a853;
    --accent: #fbbc05;
    --text: #202124;
    --text-light: #5f6368;
    --text-lighter: #80868b;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --background-alt: #e8f0fe;
    --background-dark: #1f2937;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-color: #dadce0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --min-touch-target: 44px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Reduced motion support */
@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;
    }
}

/* Skip to main content */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 0;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* High contrast support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #3a3a3a;
        --border-color: #666;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
}

/* Loading State */
body.loading {
    cursor: wait;
}

body.loading * {
    pointer-events: none;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Header */
header {
    background: #1E2EFF;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.logo:hover {
    transform: translateX(2px);
}

.logo-image,
.footer-logo {
    height: 85px;
    width: auto;
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    order: 1;
}

.language-dropdown {
    position: relative;
    order: 2;
}

.cta-button {
    order: 3;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

/* Language Dropdown - FULLY ACCESSIBLE */
.language-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: var(--min-touch-target);
    font-family: inherit;
}

.lang-current:hover {
    background: var(--background-alt);
    border-color: var(--primary);
}

.lang-current:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.lang-current .flag-icon {
    font-size: 1.3rem;
    line-height: 1;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-current .lang-text {
    display: inline;
}

.lang-current i {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: var(--transition);
    margin-left: 4px;
}

.language-dropdown[aria-expanded="true"] .lang-current i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.language-dropdown[aria-expanded="true"] .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-align: left;
    min-height: var(--min-touch-target);
    font-family: inherit;
}

.lang-option:first-child {
    border-radius: 6px 6px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 6px 6px;
}

.lang-option:hover,
.lang-option:focus-visible {
    background: var(--background-light);
}

.lang-option.active {
    background: var(--background-alt);
    color: var(--primary);
    font-weight: 600;
}

.lang-option .flag-icon {
    font-size: 1.3rem;
    line-height: 1;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

/* Navigation Dropdown (Compliance Menu) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
}

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

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

.nav-dropdown-btn:hover::after,
.nav-dropdown-btn:focus-visible::after,
.nav-dropdown[aria-expanded="true"] .nav-dropdown-btn::after {
    width: 100%;
}

.nav-dropdown-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-dropdown-btn i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.nav-dropdown[aria-expanded="true"] .nav-dropdown-btn i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
}

.nav-dropdown[aria-expanded="true"] .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    min-height: var(--min-touch-target);
    position: relative;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--background-light);
    color: var(--primary);
    outline: none;
}

.nav-dropdown-menu a:first-child:hover {
    border-radius: 6px 6px 0 0;
}

.nav-dropdown-menu a:last-child:hover {
    border-radius: 0 0 6px 6px;
}

/* CTA Button */
.cta-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    white-space: nowrap;
    min-height: var(--min-touch-target);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 8px;
    min-width: var(--min-touch-target);
    min-height: var(--min-touch-target);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: calc(85vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video.autoplay-failed {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.75) 0%, rgba(232, 240, 254, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: var(--min-touch-target);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    box-shadow: 0 6px 25px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.trust-container-mobile {
    display: none;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
}

.trust-icon {
    width: 35px;
    height: 35px;
    background: var(--background-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.solution-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

.solution-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.solution-image-wrapper {
    width: 100%;
    aspect-ratio: 400 / 250;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--background-light);
    position: relative;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 4rem;
}

/* How It Works */
.how-it-works {
    padding: 2rem 0;
    background: white;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-number {
    display: none;
}

.step-image-wrapper {
    width: 100%;
    aspect-ratio: 400 / 250;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--background-light);
    position: relative;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 4rem;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 0;
    background: white;
    color: var(--text);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Custom Contact Form Styles */
.custom-form-container {
    margin-top: 2rem;
    margin-bottom: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    background: var(--background-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #d32f2f;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: var(--transition);
    min-height: var(--min-touch-target);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-input::placeholder {
    color: var(--text-lighter);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #d32f2f;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235f6368' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

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

.form-error {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-top: 0.5rem;
}

.form-privacy {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(26, 115, 232, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.form-privacy p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.form-privacy a:hover {
    color: var(--primary-dark);
}

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
    margin-top: 1rem;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.form-status.error {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #f44336;
}

.form-status i {
    margin-right: 0.5rem;
}


@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#zohoContactIframe {
    width: 100%;
    height: 950px;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    background: white;
}

/* Footer */
footer {
    background: #1E2EFF;
    color: white;
    padding: 1.5rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-brand {
    position: relative;
}

.footer-brand .footer-logo {
    margin-bottom: 0.2rem;
}

.footer-tagline-main {
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 1.4 !important;
}

.footer-tagline-description {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6 !important;
    font-size: 0.9rem !important;
    margin-top: 2rem !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.2rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
    padding: 0;
    line-height: 1.4;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .custom-form-container {
        max-width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-main {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-main.active {
        right: 0;
    }

    .nav-links {
        display: none;
    }

    .language-dropdown {
        width: 100%;
        order: 1;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        z-index: 10;
    }

    .lang-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 100;
    }

    .trust-container-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        order: 2;
        padding-top: 0.5rem;
    }

    .trust-item-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text);
        font-weight: 500;
        font-size: 0.85rem;
    }

    .trust-icon-mobile {
        width: 30px;
        height: 30px;
        background: var(--background-alt);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .lang-current {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .trust-bar {
        padding: 1rem 0;
    }

    .trust-container {
        display: none;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .logo {
        padding: 0;
    }

    .logo-image,
    .footer-logo {
        height: 65px;
    }

    .hero {
        min-height: 49vh;
    }

    .hero-video {
        opacity: 0.7;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(248, 249, 250, 0.15) 0%,
                rgba(248, 249, 250, 0.35) 60%,
                rgba(248, 249, 250, 0.45) 100%);
    }

    .hero-container {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        background: transparent;
        backdrop-filter: none;
        padding: 1.5rem 1.25rem;
        border-radius: var(--border-radius-lg);
        box-shadow: none;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--text), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-content .subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: var(--text);
    }

    .hero-buttons {
        display: none;
    }

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

    .btn-primary {
        order: 1;
    }

    .btn-secondary {
        order: 2;
        background: var(--background-light);
        color: var(--primary);
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .features,
    .solutions,
    .how-it-works,
    .values,
    .contact-section {
        padding: 3rem 0;
    }

    .features-container,
    .solutions-container,
    .steps-grid,
    .values-grid {
        padding: 0 1.5rem;
    }

    .features-grid,
    .solutions-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .solution-card,
    .step-card,
    .value-card {
        padding: 1.5rem;
    }

    .feature-icon,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3,
    .solution-card h3,
    .step-card h3,
    .value-card h4 {
        font-size: 1.15rem;
    }

    .feature-card p,
    .solution-card p,
    .step-card p,
    .value-card p {
        font-size: 0.9rem;
    }

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

    .cta-content p {
        font-size: 0.95rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }

    .footer-column:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-column:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-column:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }

    .footer-brand .footer-logo {
        height: 55px;
        margin-bottom: 0.5rem;
    }

    .footer-tagline-main {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .footer-tagline-description {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
        line-height: 1.5 !important;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-column ul li {
        margin-bottom: 0.15rem;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .footer-bottom {
        padding: 0.75rem 1.5rem 0;
        font-size: 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .custom-form-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
        border-radius: var(--border-radius);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .custom-form-container {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }

    .cta-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        min-height: 45vh;
    }

    .hero-container {
        padding: 1.5rem 1.25rem;
    }

    .hero-content {
        padding: 1.25rem 1rem;
        background: transparent;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .subheadline {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

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

    .custom-form-container {
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        border-left: none;
        border-right: none;
        box-shadow: none;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Print styles */
@media print {
    header {
        position: relative;
        box-shadow: none;
        background: white !important;
    }

    .hero-video,
    .hero-overlay,
    .mobile-menu-btn,
    .language-dropdown,
    .btn-primary,
    .btn-secondary,
    .cta-button {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        margin-top: 0;
    }

    .hero-content {
        background: none !important;
        box-shadow: none;
        padding: 0;
    }

    .nav-main {
        position: static;
    }

    a {
        text-decoration: underline;
        color: black;
    }

    footer {
        page-break-inside: avoid;
    }

    .custom-form-container {
        display: none;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, #2d3748 100%);
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--primary);
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-banner-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cookie-banner-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.cookie-banner-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-banner-link,
    .cookie-banner-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-banner-btn {
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   Trust & Security Page Styles
   ============================================ */
.trust-header {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    text-align: center;
}

.trust-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.trust-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.trust-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.trust-section {
    margin-bottom: 3rem;
}

.trust-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.trust-section h2 i {
    margin-right: 0.5rem;
}

.trust-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text);
}

.trust-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.trust-section ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.trust-section ul li strong {
    color: var(--primary);
    font-weight: 600;
}

.trust-section a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.trust-section a:hover,
.trust-section a:focus-visible {
    color: var(--primary-dark);
    text-decoration: none;
}

.trust-cta {
    background: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 4rem;
}

.trust-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .trust-header {
        padding: 60px 20px 40px;
    }

    .trust-header h1 {
        font-size: 2rem;
    }

    .trust-header p {
        font-size: 1rem;
    }

    .trust-content {
        padding: 60px 20px;
    }

    .trust-intro {
        font-size: 1rem;
    }

    .trust-section h2 {
        font-size: 1.5rem;
    }

    .trust-cta {
        padding: 2rem;
    }

    .trust-cta h3 {
        font-size: 1.5rem;
    }

    .trust-cta p {
        font-size: 1rem;
    }
}