/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 25%, #2d1b69 50%, #4c1d95 75%, #0f0d2a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 500;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 13, 42, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.navbar-shrink .nav-container {
    padding: 8px 20px;
    height: 50px;
}

.navbar-shrink .logo-image {
    height: 25px;
}

.navbar-shrink .nav-link {
    font-size: 0.85rem;
    padding: 8px 15px;
}

.navbar-shrink .cta-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    color: #ff6b35;
    font-size: 2rem;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

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

.cta-btn::after {
    display: none;
}

.cta-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff !important;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    color: #fff !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 25%, #2d1b69 50%, #4c1d95 75%, #1a1650 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: #ffffff;
    position: relative;
    z-index: 100;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 101;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 101;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 101;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1e1b4b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    overflow: visible;
}

/* UI Screenshots Cinematic Flow - Hero Section Only */
.ui-screenshots-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
} 

.screenshot-item {
    position: absolute;
    width: 416px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --max-opacity: 0.25;
    opacity: 0;
    transform: translateX(120%);
    animation: cinematicFlow 15s infinite linear;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Cinematic flow animation with corrected transparency zones */
@keyframes cinematicFlow {
    /* Zone 1: Right edge to 75% (100% to 30% transparency = 0% to 70% opacity) */
    0% {
        opacity: 0;
        transform: translateX(100vw) scale(0.8);
        filter: blur(2px);
    }
    25% {
        opacity: 0.7;
        transform: translateX(75vw) scale(0.95);
        filter: blur(0px);
    }

    /* Zone 2: 75% to 50% (keep 30% transparency = 70% opacity) */
    50% {
        opacity: 0.7;
        transform: translateX(50vw) scale(1);
        filter: blur(0px);
    }

    /* Zone 3: 50% to left edge (30% to 100% transparency = 70% to 0% opacity linear fade) */
    75% {
        opacity: 0.35;
        transform: translateX(25vw) scale(0.95);
        filter: blur(1px);
    }
    90% {
        opacity: 0.1;
        transform: translateX(10vw) scale(0.9);
        filter: blur(2px);
    }
    100% {
        opacity: 0;
        transform: translateX(0vw) scale(0.8);
        filter: blur(3px);
    }
}

/* Dynamic screenshot positioning and opacity will be set via JavaScript */

.floating-cards {
    position: relative;
    height: 100%;
    z-index: 5;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    color: #ffffff;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    max-width: 140px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6b35;
}

.card span {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 30%;
    animation-delay: 1s;
}

.card-3 {
    top: 35%;
    left: 15%;
    animation-delay: 2s;
}

.card-4 {
    top: 38%;
    right: 15%;
    animation-delay: 3s;
}

.card-5 {
    top: 65%;
    left: 8%;
    animation-delay: 4s;
}

.card-6 {
    top: 68%;
    right: 8%;
    animation-delay: 5s;
}

.card-7 {
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-center 6s ease-in-out infinite;
    animation-delay: 6s;
}

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ff6b35;
}

/* Carousel Section */
.carousel-section {
    background: linear-gradient(135deg, #1a1650 0%, #2d1b69 50%, #4c1d95 100%);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-item {
    display: none;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.carousel-item.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.carousel-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e7eb;
    font-weight: 500;
}

.carousel-image i {
    color: #ff8c42;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.carousel-btn {
    background: rgba(255, 107, 53, 0.3);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.7);
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #ff6b35;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1650 0%, #0f0d2a 50%, #1a1650 100%);
    padding: 80px 0;
}

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

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transform: scale(1.2) translateX(-15%);
    max-width: 100%;
}

/* Responsive video scaling for different viewport widths */
@media (max-width: 1400px) {
    .video-wrapper {
        transform: scale(1.1) translateX(-10%);
    }
}

@media (max-width: 1200px) {
    .video-wrapper {
        transform: scale(1.05) translateX(-5%);
    }
}

@media (max-width: 1024px) {
    .video-wrapper {
        transform: scale(1) translateX(0);
    }
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.video-wrapper {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.video-content {
    color: #ffffff;
}

.video-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.video-content p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.1rem;
}

.video-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
}

.video-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #e5e7eb;
    font-weight: 500;
}

.video-highlights i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 50%, #2d1b69 100%);
}

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

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.highlight-box:nth-child(2):hover,
.highlight-box:nth-child(4):hover,
.highlight-box:nth-child(6):hover {
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.highlight-box:nth-child(2) .highlight-icon,
.highlight-box:nth-child(4) .highlight-icon,
.highlight-box:nth-child(6) .highlight-icon {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.highlight-box p {
    color: #e5e7eb;
    line-height: 1.6;
    font-weight: 500;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #1a1650 0%, #2d1b69 50%, #4c1d95 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.features-list {
    margin: 30px 0;
}

.feature-item-small {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item-small:last-child {
    border-bottom: none;
}

.feature-item-small i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item-small span {
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.95rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

/* Product Visuals */
.product-visual {
    height: 180px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Knowledge Animation (Operator Support) */
.knowledge-animation {
    position: relative;
    width: 160px;
    height: 160px;
}

.knowledge-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: voice-pulse 1.5s ease-in-out infinite;
    z-index: 3;
}

.knowledge-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 14px;
    animation: orbit 8s linear infinite;
}

.node-1 { transform: rotate(0deg) translateX(70px) rotate(0deg); animation-delay: 0s; }
.node-2 { transform: rotate(90deg) translateX(70px) rotate(-90deg); animation-delay: -2s; }
.node-3 { transform: rotate(180deg) translateX(70px) rotate(-180deg); animation-delay: -4s; }
.node-4 { transform: rotate(270deg) translateX(70px) rotate(-270deg); animation-delay: -6s; }

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ff6b35, transparent);
    transform-origin: bottom center;
    opacity: 0;
    animation: stream-flow 2s ease-in-out infinite;
}

.stream-1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.stream-2 { transform: translate(-50%, -100%) rotate(90deg); animation-delay: 0.5s; }
.stream-3 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 1s; }
.stream-4 { transform: translate(-50%, -100%) rotate(270deg); animation-delay: 1.5s; }

/* Voice Animation (Voice AI Agent) */
.voice-animation {
    position: relative;
    width: 160px;
    height: 160px;
}

.voice-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: voice-pulse 1.5s ease-in-out infinite;
    z-index: 3;
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    opacity: 0;
    animation: wave-expand 2s ease-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.4s; }
.wave-3 { animation-delay: 0.8s; }
.wave-4 { animation-delay: 1.2s; }
.wave-5 { animation-delay: 1.6s; }

.voice-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.voice-node {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 14px;
    animation: voice-orbit 6s linear infinite;
}

.voice-node.node-1 { transform: rotate(45deg) translateX(65px) rotate(-45deg); animation-delay: 0s; }
.voice-node.node-2 { transform: rotate(135deg) translateX(65px) rotate(-135deg); animation-delay: -1.5s; }
.voice-node.node-3 { transform: rotate(225deg) translateX(65px) rotate(-225deg); animation-delay: -3s; }
.voice-node.node-4 { transform: rotate(315deg) translateX(65px) rotate(-315deg); animation-delay: -4.5s; }

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

@keyframes stream-flow {
    0% { opacity: 0; transform: translate(-50%, -100%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -100%) scale(1.2); }
    100% { opacity: 0; transform: translate(-50%, -100%) scale(1); }
}

@keyframes voice-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
}

@keyframes wave-expand {
    0% {
        width: 60px;
        height: 60px;
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

@keyframes voice-orbit {
    0% { transform: rotate(45deg) translateX(65px) rotate(-45deg); }
    100% { transform: rotate(405deg) translateX(65px) rotate(-405deg); }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.product-card p {
    color: #e5e7eb;
    margin-bottom: 20px;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
}

.product-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.product-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
    font-weight: 500;
}

.product-card li:last-child {
    border-bottom: none;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 50%, #2d1b69 100%);
}

.features-content {
    display: grid;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.feature-text p {
    color: #e5e7eb;
    line-height: 1.6;
    font-weight: 500;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1650 0%, #2d1b69 50%, #4c1d95 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.member-photo {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff6b35;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-photo i {
    color: #ff6b35;
}

.member-info h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-info h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.experience {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.experience strong {
    color: #ffffff;
}

.team-stats {
    text-align: center;
}

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

.about-text {
    color: #ffffff;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6b35;
    font-weight: 700;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ff6b35;
    font-weight: 700;
}

.about-text p {
    color: #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat p {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-photo i {
    color: #ff6b35;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 50%, #2d1b69 100%);
}

.blog-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-carousel-container {
    overflow: hidden;
    flex: 1;
    padding: 15px 0;
}

.blog-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.blog-grid .blog-card {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
}

.blog-carousel-btn {
    background: rgba(255, 107, 53, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.blog-carousel-btn:hover {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.blog-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-carousel-btn:disabled:hover {
    transform: none;
}

/* Blog Scrollbar Indicator */
.blog-scrollbar {
    margin-top: 30px;
    padding: 0 20px;
    display: none; /* Hidden by default, shown by JS when needed */
}

.blog-scrollbar-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.blog-scrollbar-thumb {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    flex: 1;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.blog-content p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1650 0%, #2d1b69 50%, #4c1d95 100%);
}

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

.contact-info {
    color: #ffffff;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.contact-info p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e5e7eb;
    font-weight: 500;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 50%, #0f0d2a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    color: #ffffff;
    font-weight: 500;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    color: #ff6b35;
}

.logo-image-footer {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    border: 2px solid #ff6b35;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
}

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

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

.footer-section a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        right: -280px;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 13, 42, 0.95);
        width: 260px;
        text-align: left;
        transition: 0.3s;
        gap: 0;
        padding: 15px 0;
        border-radius: 15px 0 0 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.4);
        -webkit-backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
        max-height: 400px;
    }

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

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
    }

    .cta-btn {
        margin-top: 10px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }

    .hero-visual {
        height: 250px;
        margin-top: 20px;
    }

    .screenshot-item {
        width: 280px;
        height: 175px;
    }

    .card {
        padding: 15px 10px;
        min-width: 90px;
        max-width: 100px;
        font-size: 0.75rem;
    }

    .card i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .card span {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    /* Mobile-specific floating card positions - organized grid layout */
    /* Top row - 4 cards evenly spaced */
    .card-1 {
        top: 8% !important;
        left: 2% !important;
        right: auto !important;
    }

    .card-2 {
        top: 8% !important;
        left: 27% !important;
        right: auto !important;
    }

    .card-3 {
        top: 8% !important;
        left: 52% !important;
        right: auto !important;
        transform: none !important;
        animation: float 6s ease-in-out infinite !important;
    }

    .card-4 {
        top: 8% !important;
        right: 2% !important;
        left: auto !important;
    }

    /* Bottom row - 3 cards evenly spaced */
    .card-5 {
        top: 45% !important;
        left: 10% !important;
        right: auto !important;
    }

    .card-6 {
        top: 45% !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        animation: float-center 6s ease-in-out infinite !important;
    }

    .card-7 {
        top: 45% !important;
        right: 10% !important;
        left: auto !important;
    }

    .carousel-item {
        padding: 40px 20px;
    }

    .carousel-content h3 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .highlight-box {
        padding: 25px 15px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


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

    .product-card {
        padding: 30px 20px;
    }

    .product-card.featured {
        transform: scale(1);
        margin: 10px 0;
    }

    .price {
        font-size: 2rem;
    }

    .features-content {
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .about-text h3 {
        font-size: 1.8rem;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .member-photo {
        margin: 0 auto 20px;
    }

    .team-photo {
        width: 200px;
        height: 200px;
    }

    .blog-carousel-wrapper {
        gap: 10px;
    }

    .blog-grid {
        gap: 20px;
    }

    .blog-grid .blog-card {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .blog-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .blog-card {
        margin: 0;
    }

    .blog-scrollbar {
        margin-top: 20px;
        padding: 0 10px;
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .video-wrapper {
        transform: none !important;
        max-width: 100%;
        margin: 0 auto;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 90px;
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-logo i {
        font-size: 1.7rem;
    }

    .logo-image {
        height: 50px;
    }

    .logo-image-footer {
        height: 42px;
    }

    .nav-menu {
        top: 90px;
    }

    .container {
        padding: 0 15px;
    }

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

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

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

    .hero-visual {
        height: 200px;
    }

    .card {
        padding: 15px;
        font-size: 0.9rem;
    }

    .carousel-container {
        margin: 0 -10px;
    }

    .carousel-item {
        padding: 30px 15px;
    }

    .highlight-box {
        padding: 25px 15px;
    }

    .product-card {
        padding: 25px 15px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 18px 15px;
    }

    .contact-form button {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .video-wrapper {
        width: 95%;
        max-width: 350px;
    }

    .video-section {
        padding: 60px 0;
    }
}

/* GDPR Cookie Consent Popup */
.gdpr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 13, 42, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.gdpr-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gdpr-popup {
    background: linear-gradient(135deg, #1a1650, #2a2080);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: calc(100% - 40px);
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #fff;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.gdpr-header {
    text-align: center;
    margin-bottom: 20px;
}

.gdpr-header h3 {
    font-size: 1.6rem;
    margin: 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

.gdpr-content {
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.gdpr-content p {
    margin-bottom: 12px;
    color: #e2e8f0;
}

.gdpr-content ul {
    margin: 12px 0;
    padding-left: 18px;
}

.gdpr-content li {
    margin-bottom: 6px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.gdpr-content strong {
    color: #ff6b35;
}

.gdpr-warning {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
}

.gdpr-warning p {
    margin: 0;
    color: #ffb380;
    font-size: 0.85rem;
}

.gdpr-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.gdpr-btn {
    flex: 1;
    padding: 12px 8px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 0;
    max-width: calc(50% - 4px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.gdpr-accept {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gdpr-accept:hover {
    background: linear-gradient(135deg, #ff5722, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.gdpr-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.gdpr-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gdpr-footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
}

.gdpr-footer a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.gdpr-footer a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

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

/* Honeypot field styling */
.honeypot {
    display: none !important;
}

/* Privacy policy link styling */
.privacy-link {
    color: #ff6b35;
    text-decoration: underline;
}

/* Center aligned content */
.text-center {
    text-align: center;
}

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

/* Website content when GDPR is active */
html.gdpr-active,
body.gdpr-active {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure all GDPR elements use border-box and respect boundaries */
.gdpr-overlay *,
.gdpr-popup *,
.gdpr-popup {
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gdpr-popup * {
    margin-left: 0;
    margin-right: 0;
}

.gdpr-content,
.gdpr-header,
.gdpr-buttons,
.gdpr-footer,
.gdpr-warning {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.gdpr-active .gdpr-overlay ~ * {
    filter: blur(5px);
    pointer-events: none;
}

/* Desktop optimization for GDPR popup - prevent scrollbars */
@media (min-width: 1024px) {
    .gdpr-overlay {
        padding: 30px;
    }

    .gdpr-popup {
        max-width: 650px;
        max-height: 70vh;
        overflow: hidden;
        padding: 35px;
        width: 100%;
    }

    .gdpr-header h3 {
        font-size: 1.5rem;
    }

    .gdpr-content {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .gdpr-content li {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .gdpr-warning {
        margin: 15px 0;
        padding: 10px;
    }

    .gdpr-warning p {
        font-size: 0.8rem;
    }

    .gdpr-buttons {
        gap: 12px;
        margin-bottom: 15px;
        width: 100%;
    }

    .gdpr-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        flex: 1;
        max-width: calc(50% - 6px);
    }

    .gdpr-footer p {
        font-size: 0.8rem;
    }
}

/* Mobile responsiveness for GDPR popup */
@media (max-width: 768px) {
    .gdpr-overlay {
        padding: 10px;
    }

    .gdpr-popup {
        padding: 25px 20px;
        margin: 0;
        max-width: none;
        width: 100%;
        max-height: 90vh;
    }

    .gdpr-header {
        margin-bottom: 15px;
    }

    .gdpr-header h3 {
        font-size: 1.4rem;
    }

    .gdpr-content {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .gdpr-content li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .gdpr-warning {
        padding: 10px;
        margin-top: 12px;
    }

    .gdpr-warning p {
        font-size: 0.8rem;
    }

    .gdpr-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }

    .gdpr-btn {
        min-width: 0;
        max-width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .gdpr-footer {
        padding-top: 12px;
    }

    .gdpr-footer p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gdpr-overlay {
        padding: 8px;
    }

    .gdpr-popup {
        padding: 20px 15px;
        margin: 0;
        max-height: 92vh;
        width: 100%;
    }

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

    .gdpr-content {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .gdpr-content li {
        font-size: 0.8rem;
    }

    .gdpr-warning p {
        font-size: 0.75rem;
    }

    .gdpr-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 0;
        max-width: 100%;
    }

    .gdpr-footer p {
        font-size: 0.7rem;
    }
}

/* ========================================
   Technology Partners Section
   ======================================== */

.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0d2a 0%, #1a1650 25%, #2d1b69 50%, #4c1d95 75%, #1a1650 100%);
    overflow: hidden;
}

.partners-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;

    /* Gradient fade effect on edges */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.partners-track {
    display: flex;
    gap: 60px;
    width: fit-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    --logo-width: 180px;
    --logo-gap: 60px;
}

.partners-track-1 {
    animation: slide 30s linear infinite;
}

.partners-track-2 {
    animation: slide 30s linear infinite;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Keyframe animation for infinite scrolling */
@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(var(--slide-distance, -50%), 0, 0);
    }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .partners-track {
        gap: 40px;
        --logo-width: 140px;
        --logo-gap: 40px;
    }

    .partners-track-1,
    .partners-track-2 {
        animation-duration: 20s;
    }

    .partner-logo {
        min-width: 140px;
        height: 60px;
        padding: 15px;
    }

    .partner-logo img {
        max-width: 110px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-section .section-title {
        font-size: 1.3rem;
    }

    .partners-track {
        gap: 30px;
        --logo-width: 120px;
        --logo-gap: 30px;
    }

    .partners-track-1,
    .partners-track-2 {
        animation-duration: 15s;
    }

    .partner-logo {
        min-width: 120px;
        height: 50px;
        padding: 10px;
    }

    .partner-logo img {
        max-width: 90px;
        max-height: 35px;
    }
}

/* ========================================
   Twitter Soon Popup
   ======================================== */

.twitter-soon {
    position: relative;
    cursor: not-allowed !important;
}

.twitter-soon .soon-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #ff6b35;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.twitter-soon:hover .soon-popup,
.twitter-soon:focus .soon-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* Small arrow for popup */
.twitter-soon .soon-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #ff6b35;
}

/* ========================================
   Blog Post Page Styling
   ======================================== */

.blog-post-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.blog-post-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-featured-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-content {
    color: #e5e7eb;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content .lead {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-post-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-post-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content blockquote {
    border-left: 4px solid #ff6b35;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.blog-post-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 10px;
}

.blog-post-content blockquote cite {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-style: normal;
}

.blog-post-content .conclusion {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.blog-post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .blog-post-container {
        margin-top: 100px;
    }

    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content .lead {
        font-size: 1.15rem;
    }

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

    .blog-post-content h3 {
        font-size: 1.2rem;
    }
}