/* Landing Modern CSS */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004a99;
    --secondary-color: #dc3545;
    --accent-color: #ff4757;
    --success-color: #28a745;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-card: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    --gradient-secondary: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-blue-red: linear-gradient(135deg, #0066cc 0%, #dc3545 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Modern */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header-modern.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.brand-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.navbar-dark .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-login {
    background: var(--gradient-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-blue-red);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.hero-particles::after {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

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

.hero-content {
    color: white;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-cta .btn {
    margin: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Floating Cards in Hero */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    width: 240px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    width: 220px;
    animation-delay: -4s;
}

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

.floating-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-card .card-header i {
    font-size: 1.25rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-blue-red);
    border-radius: 4px;
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes progressFill {
    0%, 100% { width: 75%; }
    50% { width: 85%; }
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-blue-red);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1.5s ease-in-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.1); }
}

.success-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: -5px auto;
    animation: arrowBounce 2s infinite;
}

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

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

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About PLAORC Section */
.about-plaorc-section {
    background: white;
    padding: 100px 0;
}

.about-content {
    padding-right: 2rem;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.innovation-visual {
    position: relative;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.innovation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.innovation-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.innovation-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.innovation-metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blue-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    background: var(--gradient-blue-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Products Overview Section */
.products-overview-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.product-overview-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-blue-red);
}

.dilopro-overview::before {
    background: var(--gradient-secondary);
}

.product-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-overview-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-blue-red);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.product-overview-badge.badge-secondary {
    background: var(--gradient-secondary);
}

.product-overview-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.dilopro-overview .product-overview-icon {
    background: var(--gradient-secondary);
}

.product-overview-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blue-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.dilopro-overview .product-overview-name {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-overview-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.product-overview-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.product-overview-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.product-overview-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.cta-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Services Section */
.services-highlight {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.services-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Products Section */
.products-section {
    background: white;
}

.product-showcase {
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-blue-red);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dilopro-card::before {
    background: var(--gradient-secondary);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-blue-red);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.badge-secondary {
    background: var(--gradient-secondary);
}

.product-name {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-blue-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.dilopro-card .product-name {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Product Preview */
.product-preview {
    position: relative;
    padding: 2rem;
}

.preview-card {
    background: #f7fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: scale(1.02);
}

.preview-header {
    background: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
}

.preview-dots span:nth-child(1) { background: #fc8181; }
.preview-dots span:nth-child(2) { background: #f6ad55; }
.preview-dots span:nth-child(3) { background: #68d391; }

.preview-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
}

.preview-content {
    padding: 2rem;
}

/* Gantt Preview */
.gantt-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gantt-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gantt-label {
    min-width: 120px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gantt-bars {
    flex: 1;
    height: 32px;
    background: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.gantt-bar {
    position: absolute;
    height: 100%;
    background: var(--gradient-blue-red);
    border-radius: 6px;
    animation: ganttSlide 2s ease-in-out infinite;
}

@keyframes ganttSlide {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Productivity Stats */
.productivity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-icon-sm {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label-sm {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.chart-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.line-chart {
    width: 100%;
    height: auto;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 100px 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefit-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.visual-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.visual-stat {
    text-align: center;
}

.visual-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blue-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.visual-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-blue-red);
    padding: 100px 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    color: white;
}

.company-info {
    margin-top: 2rem;
    color: var(--text-light);
}

.company-info h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-modern {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-right: 12px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .product-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 150px;
    }
    
    .hero-image {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 2.5rem 1.5rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .visual-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .innovation-body {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    .product-overview-card {
        padding: 2rem;
    }
    
    .product-overview-name {
        font-size: 2rem;
    }
    
    .product-overview-features {
        grid-template-columns: 1fr;
    }
    
    .services-highlight {
        padding: 2rem;
    }
    
    .services-highlight h3 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Grid adjustments for tablets */
    .row.g-4 {
        gap: 1rem !important;
    }
}

@media (max-width: 767px) {
    /* Navbar improvements */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .brand-logo {
        height: 32px;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1rem;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
    
    .nav-item {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    /* Hero adjustments */
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Product cards */
    .product-card {
        padding: 2rem 1.25rem;
    }
    
    .product-name {
        font-size: 1.75rem;
    }
    
    .product-tagline {
        font-size: 1.125rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    /* Overview cards */
    .product-overview-card {
        padding: 1.75rem;
    }
    
    .product-overview-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .product-overview-name {
        font-size: 1.875rem;
    }
    
    .product-overview-tagline {
        font-size: 1.125rem;
    }
    
    .product-overview-desc {
        font-size: 0.95rem;
    }
    
    .product-overview-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Stats and metrics */
    .productivity-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .innovation-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 1.875rem;
    }
    
    /* Benefits */
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .benefit-content h4 {
        font-size: 1.125rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    /* Highlights */
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
    
    /* Tech badges */
    .tech-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* CTA */
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-badges {
        gap: 0.5rem;
    }
    
    .badge-cta {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Services */
    .services-highlight {
        padding: 1.75rem;
    }
    
    .services-highlight h3 {
        font-size: 1.625rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    /* Contact */
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-brand-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-cta .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-tagline {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    .product-overview-card {
        padding: 1.5rem;
    }
    
    .product-overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .product-overview-name {
        font-size: 1.625rem;
    }
    
    .product-overview-tagline {
        font-size: 1rem;
    }
    
    .product-overview-desc {
        font-size: 0.875rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .tech-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .services-highlight {
        padding: 1.5rem;
    }
    
    .services-highlight h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-card h5 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h4 {
        font-size: 1.25rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
    
    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========================================
   MOBILE OPTIMIZATIONS (Extra Small & Small Devices)
   ======================================== */

/* Extra Small Devices (phones, 320px to 575px) */
@media (max-width: 575px) {
    /* General Typography */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    /* Header */
    .brand-logo {
        height: 30px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .btn-login {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 60px;
        min-height: auto !important;
    }
    
    .hero-section .row {
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        margin: 0 !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Hide complex hero elements on very small screens */
    .hero-image,
    .floating-card,
    .scroll-indicator {
        display: none !important;
    }
    
    /* Sections Spacing */
    section {
        padding: 3rem 0 !important;
    }
    
    .about-plaorc-section,
    .products-overview-section,
    .products-section,
    .features-section,
    .benefits-section,
    .cta-section,
    .contact-section {
        padding: 2.5rem 0 !important;
    }
    
    /* Product Cards */
    .product-overview-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
    }
    
    .product-overview-name {
        font-size: 1.5rem !important;
    }
    
    .product-overview-tagline {
        font-size: 1rem !important;
    }
    
    .product-overview-desc {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .product-overview-features {
        gap: 0.5rem;
    }
    
    .product-overview-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-overview-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.75rem !important;
    }
    
    .product-overview-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1rem !important;
    }
    
    .feature-card p {
        font-size: 0.85rem !important;
    }
    
    .feature-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1rem !important;
    }
    
    .service-card h5 {
        font-size: 0.95rem !important;
    }
    
    .service-card p {
        font-size: 0.8rem !important;
    }
    
    .service-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
    
    /* Benefits */
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    .benefit-icon {
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem !important;
    }
    
    .benefit-content p {
        font-size: 0.85rem !important;
    }
    
    /* Hide visual elements on mobile */
    .benefit-visual,
    .innovation-visual,
    .preview-card {
        display: none;
    }
    
    /* Contact Cards */
    .contact-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .contact-card h4 {
        font-size: 1.1rem !important;
    }
    
    .contact-info {
        font-size: 0.95rem !important;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 0.9rem !important;
    }
    
    .cta-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .badge-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-card {
        padding: 2rem 1rem !important;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .footer-brand-name {
        font-size: 1.1rem;
    }
    
    /* Social */
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Grid Adjustments */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Product Showcase */
    .product-showcase {
        margin-bottom: 2rem !important;
    }
    
    .product-card {
        padding: 1.25rem !important;
    }
    
    .product-name {
        font-size: 1.5rem !important;
    }
    
    .product-tagline {
        font-size: 1rem !important;
    }
    
    .product-description {
        font-size: 0.85rem !important;
    }
    
    .product-features .feature-item {
        font-size: 0.8rem !important;
    }
    
    /* Highlights */
    .about-highlights {
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
    
    .highlight-content h5 {
        font-size: 0.95rem !important;
    }
    
    .highlight-content p {
        font-size: 0.8rem !important;
    }
    
    /* Company Info */
    .company-info h5 {
        font-size: 1.1rem !important;
    }
    
    .company-info p {
        font-size: 0.85rem !important;
    }
    
    .company-info .small {
        font-size: 0.75rem !important;
    }
    
    /* Metrics & Stats */
    .innovation-metric {
        padding: 0.75rem !important;
    }
    
    .metric-value {
        font-size: 1.5rem !important;
    }
    
    .metric-label {
        font-size: 0.75rem !important;
    }
    
    .visual-number {
        font-size: 1.75rem !important;
    }
    
    .visual-label {
        font-size: 0.8rem !important;
    }
    
    /* Tech Badges */
    .tech-badges {
        gap: 0.5rem;
    }
    
    .tech-badge {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.75rem !important;
    }
}

/* Small Devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .product-overview-name {
        font-size: 1.75rem !important;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.25rem !important;
    }
    
    .section-title {
        font-size: 2.25rem !important;
    }
    
    .floating-card {
        transform: scale(0.85);
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Make tap targets bigger for touch */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .social-link {
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .service-card:hover,
    .product-card:hover {
        transform: none !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
    
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* High DPI screens (Retina displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

