/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #3C3C3C;
    background: #ffffff;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-purple: #6366f1;
    --secondary-purple: #8b5cf6;
    --accent-purple: #a855f7;
    --card-title-purple: #6C4CCF;
    --light-purple: #f3f4ff;
    --dark-purple: #4338ca;
    --premium-gold: #f59e0b;
    --premium-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --text-primary: #3C3C3C;
    --text-heading-primary: #0B1F36;
    --text-heading-secondary: #6C4CCF;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --premium-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 60px;
    font-weight: 900;
    color: var(--text-heading-primary);
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-heading-primary);
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-heading-secondary);
}

h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
}

h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

small, .small-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Typography Color Consistency */
h1, .hero-title {
    color: #0B1F36 !important;
}

h2, .section-title, .cta-title {
    color: #0B1F36 !important;
}

h3, .product-title, .capability-title, .tech-item h3 {
    color: #6C4CCF !important;
}

p, .hero-subtitle, .section-description, .product-description {
    color: #3C3C3C !important;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
}

section {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, 
.nav-link.active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.nav-link.has-dropdown::after {
    content: '⌄';
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.nav-cta {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1e293b;
    cursor: pointer;
}

/* ===== DROPDOWN STYLES ===== */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -200px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

/* Products Dropdown */
.products-dropdown {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 750px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-item:hover .products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Header */
.dropdown-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 24px 32px;
    color: white;
}

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

.dropdown-header-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff !important;
}

.dropdown-header-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff !important;
}

.dropdown-header-badge {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.badge-number {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #ffffff !important;
}

.badge-label {
    font-size: 10px;
    opacity: 0.8;
    color: #ffffff !important;
}

/* Main Content Grid */
.dropdown-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 200px;
}

/* Products List */
.products-list-section {
    padding: 24px;
    background: white;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8fafc;
}

.product-item:hover {
    background: white !important;
    border-color: #6366f1 !important;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.product-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-right: 12px;
}

.smartops-icon {
    background: linear-gradient(135deg, #10b981, #6366f1);
}

.smarteye-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.smartitm-icon {
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
}

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

.energy-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.transport-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.company-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

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

.resource-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 14px;
}

.doc-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.whitepaper-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.blog-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.support-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.product-item-info {
    flex: 1;
}

.product-item-info h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.product-item-info h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.product-item-info p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

.resource-item-text {
    font-size: 12px !important;
    line-height: 1.2;
}

.product-arrow {
    color: #cbd5e1;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-item:hover .product-arrow {
    color: #6366f1 !important;
    transform: translateX(4px);
}

/* Resource Items */
.resource-item-small {
    padding: 10px;
    margin-bottom: 6px;
}

.resource-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5e7eb;
}

.resource-section-end {
    margin-bottom: 16px;
}

/* Sidebars */
.dropdown-sidebar {
    padding: 24px;
    background: linear-gradient(135deg, #f3f4ff 0%, #ede9fe 100%);
    border-left: 1px solid #e5e7eb;
}

.benefits-sidebar {
    background: linear-gradient(135deg, #f3f4ff 0%, #ede9fe 100%);
}

.impact-sidebar {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.company-sidebar {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.resources-sidebar {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.dropdown-sidebar h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}

.benefit-list {
    margin-bottom: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.benefit-checkmark {
    width: 20px;
    height: 20px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.impact-check {
    background: #10b981;
}

.company-check {
    background: #f59e0b;
}

.resources-check {
    background: #8b5cf6;
}

.benefit-item span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.sidebar-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.sidebar-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.sidebar-btn-secondary {
    background: white;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.sidebar-btn-secondary:hover {
    background: #6366f1;
    color: white;
}

.impact-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.impact-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.impact-btn-secondary {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.company-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.company-btn-secondary {
    background: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.resources-btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.resources-btn-secondary {
    background: white;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

/* Solutions Dropdown */
.solutions-dropdown {
    position: absolute;
    top: 100%;
    left: -250px;
    width: 800px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-item:hover .solutions-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.solutions-dropdown .dropdown-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 20px 32px;
}

.solutions-dropdown .dropdown-content {
    min-height: 200px;
}

.solutions-dropdown .product-item:hover {
    border-color: #10b981 !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
}

/* Why Telepresenz Dropdown */
.why-telepresenz-dropdown {
    position: absolute;
    top: 100%;
    left: -300px;
    width: 650px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-item:hover .why-telepresenz-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.why-telepresenz-dropdown .dropdown-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 20px 32px;
}

.why-telepresenz-dropdown .dropdown-content {
    min-height: 200px;
}

.why-telepresenz-dropdown .product-item:hover {
    border-color: #f59e0b !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

/* Resources Dropdown */
.resources-dropdown {
    position: absolute;
    top: 100%;
    left: -300px;
    width: 650px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-item:hover .resources-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.resources-dropdown .dropdown-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 20px 32px;
}

.resources-dropdown .dropdown-content {
    min-height: 200px;
}

.resources-dropdown .product-item:hover {
    border-color: #8b5cf6 !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 4rem 0 2rem;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}

#network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-content {
    text-align: left;
    padding: 60px 0;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 200;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--premium-gradient);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

/* Hero Visual Section */
.hero-visual-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.hero-wheel-container {
    position: relative;
    width: 800px;
    height: 800px;
    max-width: 90vw;
    max-height: 90vh;
    aspect-ratio: 1;
    margin-left: -150px;
    margin-right: auto;
}

.hero-connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.1);
    z-index: 10;
    animation: heroPulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-central-hub::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: heroRotate 15s linear infinite;
}

.hero-central-hub.hero-video-hub {
    background: #ffffff;
    overflow: hidden;
}

.hero-central-hub.hero-video-hub video {
    width: 150%;
    height: 150%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-feature-node {
    position: absolute;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--feature-color);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transform: scale(0.8);
}

.hero-feature-node:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: var(--feature-color);
    color: white;
}

.hero-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--feature-color);
    transition: color 0.3s ease;
}

.hero-feature-node:hover .hero-feature-icon {
    color: white;
}

.hero-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #374151;
    transition: color 0.3s ease;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-feature-node:hover .hero-feature-title {
    color: white;
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.2), inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--premium-gradient);
    opacity: 0.05;
    will-change: transform;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    max-width: 40vw;
    max-height: 40vh;
    top: -100px;
    right: -100px;
    animation: float-bg-1 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    max-width: 30vw;
    max-height: 30vh;
    bottom: -75px;
    left: -75px;
    animation: float-bg-2 10s ease-in-out infinite;
}

@keyframes float-bg-1 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes float-bg-2 {
    0%, 100% { transform: translateX(0px) scale(1); }
    50% { transform: translateX(20px) scale(0.9); }
}

/* ===== TECHNOLOGY SHOWCASE ===== */
.tech-showcase {
    background: linear-gradient(135deg, var(--gray-50) 0%, #fafbff 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
    position: relative;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--premium-gradient);
}

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

.tech-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f9fafb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.tech-icon-green {
    color: #10b981;
}

.tech-icon-red {
    color: #ef4444;
}

.tech-icon-orange {
    color: #f59e0b;
}

.tech-item h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

.tech-item-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #1f2937;
}

/* ===== CLIENT CAROUSEL SECTION ===== */
.client-carousel-section {
    background: #f8fafc;
    padding: 80px 0;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

.client-carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.client-carousel-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #1f2937;
}

.client-carousel-container {
    background: white;
    border-radius: 16px;
    padding: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.scrolling-wrapper {
    overflow: hidden;
    position: relative;
}

.scrolling-content {
    display: flex;
    gap: 30px;
    animation: scroll-left 45s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card {
    background: #4b5563;
    border-radius: 12px;
    min-width: 220px;
    height: 100px;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-card:hover {
    background: #6b7280;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.client-info {
    text-align: center;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 4px 0;
    padding: 0;
    line-height: 1.2;
}

.client-industry {
    font-size: 0.75rem;
    color: #d1d5db;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
}

/* ===== PRODUCTS SECTION ===== */
.section#products {
    background: var(--white);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    color: #6366f1;
}

.section-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #4338ca;
    line-height: 1.6;
    margin-bottom: 1em;
}

.products-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: #4338ca !important;
}

.products-tagline sup {
    font-size: 12px;
    vertical-align: super;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    border: 2px solid #0077b6;
    border-radius: 12px;
    padding: 32px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.product-card:nth-child(1) .product-icon {
    background: linear-gradient(45deg, #2dc653, #6366f1);
    color: white;
}

.product-card:nth-child(2) .product-icon {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
}

.product-card:nth-child(3) .product-icon {
    background: linear-gradient(45deg, #8b5cf6, #2dc653);
    color: white;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--light-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.product-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.trademark {
    font-size: 0.7em;
    vertical-align: super;
}

.content-list {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px !important;
    font-weight: 300;
    color: #4338ca;
    line-height: 1.6;
    list-style: none;
    padding-left: 0;
}

.content-list li {
    position: relative;
    margin-bottom: 0.7em;
    padding-left: 30px;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 0;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.product-cta:hover {
    background: var(--dark-purple);
    transform: translateY(-1px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 20% 20%, #7c3aed 0%, transparent 50%), radial-gradient(circle at 80% 80%, #3b82f6 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-connecting-svg {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1;
}

.process-step {
    background: white;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.08);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15) !important;
    border-color: #7c3aed !important;
}

.process-step:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15) !important;
    border-color: #f97316 !important;
}

.process-step:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15) !important;
    border-color: #10b981 !important;
}

.step-number-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.step-number-border {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    opacity: 0.15;
}

.step-number-border-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.step-number-border-green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.step-number {
    position: relative;
    font-size: 36px;
    font-weight: 800;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transition: transform 0.3s ease;
}

.step-number-purple {
    color: #7c3aed;
    background: linear-gradient(135deg, #ede9fe, #f3e8ff);
}

.step-number-orange {
    color: #f97316;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.step-number-green {
    color: #10b981;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.process-step:hover .step-number {
    transform: scale(1.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.step-icon-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.step-icon-orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.step-icon-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.process-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.process-step p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.step-label {
    margin-top: 25px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.step-label-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.step-label-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.step-label-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.process-cta {
    text-align: center;
    margin-top: 80px;
}

.process-cta p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 25px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
    transition: all 0.3s ease;
}

.process-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 4rem 0 3rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 25% 25%, #6a1b9a 0%, transparent 70%), radial-gradient(circle at 75% 75%, #8b5cf6 0%, transparent 70%);
    pointer-events: none;
}

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

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-content {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-dashboard {
    max-width: 525px;
    flex: 1;
    display: flex;
    align-items: center;
}

.dashboard-frame {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(106,27,154,0.3);
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-frame img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 4px solid rgba(255,255,255,0.2);
}

.stats-metrics {
    flex: 1;
    min-width: 600px;
    height: 320px;
    display: flex;
    align-items: center;
}

.stats-metrics > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    width: 100%;
}

.stat-metric {
    text-align: center;
    padding: 1.5rem 3rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-metric:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(106, 27, 154, 0.12);
}

.stat-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.8;
}

.stat-metric-green::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.stat-metric-orange::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.stat-metric-purple::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.stat-metric-blue::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.stat-metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

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

.stat-metric-orange .stat-metric-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-metric-purple .stat-metric-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

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

.stat-metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-metric-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== CAPABILITIES SECTION ===== */
.section#capabilities {
    background: var(--gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

#capabilities .container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.2rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #34d399, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 240ms ease, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #3b82f6, #34d399);
    transform: scale(1.02);
}

.accordion-header.active .arrow {
    transform: rotate(90deg);
}

.arrow {
    display: inline-block;
    transform-origin: center;
    transition: transform 300ms ease;
}

.accordion-content {
    height: 0;
    overflow: hidden;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    transition: height 350ms ease, padding 350ms ease;
    display: block;
    background-color: #f9f9f9;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0.5rem;
    align-items: start;
}

.capability-card {
    background: var(--white);
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.capability-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.capability-icon {
    width: 56px;
    height: 56px;
    background: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
}

.capability-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-heading-secondary);
    line-height: 1.2;
}

.capability-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.section {
    padding: 80px 0;
}

.cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 24px;
    margin: 80px 0;
    padding: 80px 40px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.cta-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff !important;
}

.cta-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff !important;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    background: var(--white);
    color: var(--primary-purple);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--premium-gradient);
}

.footer-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
    flex-grow: 1;
}

.footer-section {
    flex: 1;
    min-width: 150px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-brand p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280 !important;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1f2937 !important;
    line-height: 1.2;
}

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

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

.footer-links a {
    color: #6b7280 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--premium-gradient);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1 !important;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    color: #6b7280 !important;
}

.footer-bottom p {
    color: #6b7280 !important;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 3px solid #0077b6;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-icon {
    font-size: 2.5rem;
    color: #f59e0b;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, #005577 0%, #007a96 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

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

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

.cookie-btn-decline {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    transform: translateY(-1px);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-modal-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-category-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    flex-shrink: 0;
}

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

.toggle-label {
    display: block;
    width: 50px;
    height: 28px;
    background: #d1d5db;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label:hover {
    background: #9ca3af;
}

.toggle-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="checkbox"]:checked + .toggle-label {
    background: #0077b6;
}

input[type="checkbox"]:checked + .toggle-label .toggle-inner {
    transform: translateX(22px);
}

input[type="checkbox"]:disabled + .toggle-label {
    opacity: 0.7;
    cursor: not-allowed;
    background: #0077b6;
}

.cookie-policy-link {
    margin-top: 2rem;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
}

.cookie-policy-link p {
    margin: 0;
    color: #1e40af;
    font-size: 0.9rem;
}

.cookie-link {
    color: #0077b6;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Floating Cookie Settings Button */
.cookie-settings-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    display: none;
}

.cookie-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 119, 182, 0.4);
}

/* ===== CHATBOT STYLES ===== */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    font-family: 'DM Sans', sans-serif;
}

.chat-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 119, 182, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.4);
}

.chat-button-icon {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.chat-button.open .chat-button-icon {
    transform: rotate(180deg);
}

.chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.chat-notification.show {
    transform: scale(1);
    animation: bounce 0.6s ease;
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-window.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.chat-header-content {
    position: relative;
    z-index: 2;
}

.chat-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.chat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8fafc;
    position: relative;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.message {
    margin-bottom: 1rem;
    animation: messageSlideIn 0.3s ease;
}

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

.message-bot {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.message-user {
    display: flex;
    justify-content: flex-end;
}

.bot-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

.message-content {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 18px 18px 18px 4px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.message-user .message-content {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    color: white;
    border-radius: 18px 18px 4px 18px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

.message-text {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    text-align: right;
}

.welcome-message {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border: 1px solid #0077b6;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: welcomeSlide 0.6s ease;
}

@keyframes welcomeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.welcome-title {
    font-weight: 600;
    color: #0077b6;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.welcome-text {
    font-size: 0.85rem;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-action {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}

.quick-action:hover {
    background: #f3f4f6;
    border-color: #0077b6;
    color: #0077b6;
    transform: translateY(-1px);
}

.chat-input-container {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    background: #f8fafc;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.chat-input-wrapper:focus-within {
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    resize: none;
    outline: none;
    min-height: 20px;
    max-height: 80px;
    line-height: 1.4;
}

.chat-input::placeholder {
    color: #94a3b8;
}

.send-button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.send-button:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .dropdown-large,
    .products-dropdown,
    .solutions-dropdown {
        min-width: 500px;
        left: -200px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-wheel-container {
        width: 700px;
        height: 700px;
    }
    
    .hero-central-hub {
        width: 170px;
        height: 170px;
    }
    
    .hero-feature-node {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats-content {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2, .section-title, .cta-title {
        font-size: 32px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 14px;
    }
    
    p {
        font-size: 14px;
    }
    
    small, .small-text {
        font-size: 12px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-wheel-container {
        width: 600px;
        height: 600px;
    }
    
    .hero-central-hub {
        width: 140px;
        height: 140px;
    }
    
    .hero-feature-node {
        width: 130px;
        height: 130px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-metrics {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dropdown-large,
    .products-dropdown,
    .solutions-dropdown,
    .why-telepresenz-dropdown,
    .resources-dropdown {
        min-width: 90vw;
        left: -100px;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
    }
    
    .dropdown-sidebar {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 50px;
    }
    
    .process-connecting-svg {
        display: none;
    }
}

@media (max-width: 640px) {
    .accordion-header {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
    
    #capabilities .container {
        width: 98%;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-wheel-container {
        width: 450px;
        height: 450px;
    }
    
    .hero-central-hub {
        width: 120px;
        height: 120px;
    }
    
    .hero-feature-node {
        width: 110px;
        height: 110px;
    }
    
    .section {
        padding: 60px 0;
    }
    
.cookie-banner {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-settings-float {
        bottom: 1rem;
        left: 1rem;
    }
    
    .cookie-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .chat-window {
        width: 100%;
        height: 70vh;
        position: fixed;
        bottom: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .chat-button {
        width: 60px;
        height: 60px;
        position: fixed;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONNECTION LINE ANIMATIONS ===== */
.connection-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
    animation: drawLine 0.8s ease-out forwards;
}

.connection-line:nth-child(1) { animation-delay: 0.3s; }
.connection-line:nth-child(2) { animation-delay: 0.5s; }
.connection-line:nth-child(3) { animation-delay: 0.7s; }
.connection-line:nth-child(4) { animation-delay: 0.9s; }
.connection-line:nth-child(5) { animation-delay: 1.1s; }
.connection-line:nth-child(6) { animation-delay: 1.3s; }
.connection-line:nth-child(7) { animation-delay: 1.5s; }
.connection-line:nth-child(8) { animation-delay: 1.7s; }

.connection-line.highlight {
    opacity: 1 !important;
    stroke-width: 2 !important;
    filter: drop-shadow(0 0 4px currentColor);
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
}

/* Sequential node appearance animations */
.hero-feature-node:nth-child(3) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}
.hero-feature-node:nth-child(4) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}
.hero-feature-node:nth-child(5) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}
.hero-feature-node:nth-child(6) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards;
}
.hero-feature-node:nth-child(7) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s forwards;
}
.hero-feature-node:nth-child(8) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}
.hero-feature-node:nth-child(9) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.7s forwards;
}
.hero-feature-node:nth-child(10) { 
    animation: heroNodeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s forwards;
}

@keyframes heroNodeAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== FLOATING ELEMENTS CONSTRAINT ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
    max-width: 100px;
    max-height: 100px;
}

.orbiting-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
    pointer-events: none;
}

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

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

/* ===== PREMIUM SCROLL ANIMATION ===== */
@keyframes premiumScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ===== ADDITIONAL FIXES ===== */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.03), transparent, rgba(236, 72, 153, 0.03), transparent, rgba(6, 182, 212, 0.03), transparent);
    animation: heroRotate 20s linear infinite;
    pointer-events: none;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .cookie-settings-float,
    .chatbot-container,
    .hero-bg-elements {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ===== END OF STYLES ===== */