/* styles.css - Main stylesheet for TracePoint website */

@import 'css/theme.css';

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--on-background);
    line-height: 1.6;
}

/* Base container styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 0;
}

section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container,
    section .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2001;
    position: relative;
    gap: 12px; /* Add spacing between logo and text */
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::after {
    opacity: 1;
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(235, 165, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zone connection lines */
.grid-icon::before {
    display: none;  /* This will hide the X animation */
}

.grid-cell {
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

/* Sequential color transition for cells */
.grid-cell:nth-child(1) { animation: colorTransition 3s infinite; }
.grid-cell:nth-child(2) { animation: colorTransition 3s infinite 0.75s; }
.grid-cell:nth-child(3) { animation: colorTransition 3s infinite 1.5s; }
.grid-cell:nth-child(4) { animation: colorTransition 3s infinite 2.25s; }

/* Tracking pulse effect for each cell */
.grid-cell::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: cell-pulse 2s infinite;
    opacity: 0;
}

/* Sequential pulse animation for cells */
.grid-cell:nth-child(1)::after { animation-delay: 0s; }
.grid-cell:nth-child(2)::after { animation-delay: 0.5s; }
.grid-cell:nth-child(3)::after { animation-delay: 1s; }
.grid-cell:nth-child(4)::after { animation-delay: 1.5s; }

/* Hover effects */
.logo-container:hover .grid-icon {
    transform: rotate(90deg);
}

.logo-container:hover .grid-cell {
    background-color: var(--primary-light);
}

/* Animations */
@keyframes cell-pulse {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

@keyframes connect {
    0% { transform: translateX(-100%) translateY(-100%); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateX(100%) translateY(100%); opacity: 0; }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #212121;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(5px);
}

.logo-container:hover .logo-text::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease, box-shadow 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(235, 165, 0, 0.5);
}

.nav-links .cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(235, 165, 0, 0.3);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.nav-links .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-links .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.nav-links .cta-button:hover::after {
    left: 100%;
}

/* Mobile menu styles removed - now in mobile-menu.css */

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links .cta-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Hero Section */
#hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(235, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(80, 68, 42, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Add animated particles effect */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out forwards;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 50%, #FFE5B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(235, 165, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555555;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 3rem 0;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 165, 0, 0.3), transparent);
}

.stat-item {
    text-align: center;
    background: rgba(15, 16, 19, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(235, 165, 0, 0.2);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #555555;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.hero-cta .cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.hero-cta .secondary-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-cta .secondary-button:hover {
    background: rgba(235, 165, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.15);
}

/* Section Subtitles */
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--on-surface-variant);
}

/* Enhanced Chart Box */
.chart-box.full-width {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.chart-note {
    text-align: center;
    color: var(--on-surface-variant);
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Enhanced Hero Section */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--on-surface-variant);
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Enhanced Chart Styling */
.chart-box {
    background: var(--surface);
    border: 1px solid var(--surface-variant);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.chart-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.chart-box h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--on-primary-container);
}

.chart-box canvas {
    flex: 1;
    width: 100% !important;
    height: 300px !important;
}

/* Features Section */
#features {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(235, 165, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235, 165, 0, 0.04) 0%, transparent 50%);
    z-index: 0;
}

#features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(235, 165, 0, 0.3);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 165, 0, 0.12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.25rem;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
    display: block; /* Show the circle again */
    animation: pulse 2s infinite; /* Restore animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(235, 165, 0, 0.18);
    box-shadow: 0 12px 30px rgba(235, 165, 0, 0.25);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--on-surface);
    transition: all 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--primary);
}

.feature-item p {
    color: var(--on-surface-variant);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Feature cards for cases when using the feature-card class instead of feature-item */
.feature-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(235, 165, 0, 0.3);
}

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

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

/* Industries Section */
#industries {
    padding: 100px 0;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(235, 165, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(235, 165, 0, 0.04) 0%, transparent 50%);
    z-index: 0;
}

#industries .container {
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.industry-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(235, 165, 0, 0.3);
}

.industry-item:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 165, 0, 0.12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.25rem;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.industry-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
    display: block; /* Show the circle again */
    animation: pulse 2s infinite; /* Restore animation */
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
    background: rgba(235, 165, 0, 0.18);
    box-shadow: 0 12px 30px rgba(235, 165, 0, 0.25);
}

.industry-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--on-surface);
    transition: all 0.3s ease;
}

.industry-item:hover h3 {
    color: var(--primary);
}

.industry-item p {
    color: var(--on-surface-variant);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Industry badge */
.industry-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(235, 165, 0, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.industry-item:hover .industry-badge {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-item {
        padding: 2rem;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Packages Section */
#packages {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

#packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(235, 165, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235, 165, 0, 0.03) 0%, transparent 50%);
    z-index: 0;
}

#packages .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.pricing-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0.7;
    transition: height 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(235, 165, 0, 0.2);
}

.pricing-card:hover::before {
    height: 8px;
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(235, 165, 0, 0.3);
    z-index: 10;
}

.pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
    line-height: 1.2;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--on-surface-variant);
    margin-left: 0.25rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.pricing-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
}

.pricing-header .price .price-from {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--on-surface);
    display: block !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: var(--on-surface) !important;
    background: none !important;
}

.pricing-header .price .price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block !important;
    background: linear-gradient(135deg, #EBA500, #FFD166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1 !important;
    visibility: visible !important;
}

.pricing-header .price .price-period {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--on-surface-variant);
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: var(--on-surface-variant) !important;
    background: none !important;
}

.pricing-header p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #666666;
    margin-top: 1rem;
    padding: 0 1rem;
}

.pricing-features {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    color: #555555;
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-features ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: rgba(235, 165, 0, 0.15);
    border-radius: 50%;
    margin-right: 0.85rem;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border-color: rgba(235, 165, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.pricing-card.popular:hover {
    transform: translateY(-12px) scale(1.05);
}

.pricing-card.popular::before {
    height: 6px;
    background: linear-gradient(90deg, #EBA500, #FFD166);
    opacity: 1;
}

.pricing-card.popular:hover::before {
    height: 10px;
}

.pricing-card .cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(235, 165, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.pricing-card .cta-button:hover::after {
    left: 100%;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-12px);
    }
    
    #packages {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        margin: 0;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-footer {
        padding: 1.5rem;
    }
}

/* Contact Form Section */
#contact {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(235, 165, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(235, 165, 0, 0.04) 0%, transparent 50%);
    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact h2 {
    margin-bottom: 1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(29, 31, 35, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(235, 165, 0, 0.5));
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: #F5F5F5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(235, 165, 0, 0.15);
    box-shadow: 0 4px 15px rgba(235, 165, 0, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: rgba(235, 165, 0, 0.2);
}

.contact-item div {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-item p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-item a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(235, 165, 0, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(235, 165, 0, 0.2);
}

.contact-form:hover::before {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .contact-item {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 80px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-form h3 {
        font-size: 1.3rem;
    }

    /* Mobile menu styles removed - now in mobile-menu.css */
    .contact-form .cta-button {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background-color: var(--surface);
    padding: 60px 0 20px;
    border-top: 1px solid var(--surface-variant);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--on-surface-variant);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-variant);
}

/* Mobile menu styles removed - now in mobile-menu.css */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 1rem;
        border-bottom: 1px solid var(--surface-variant);
    }

    .charts-container,
    .features-grid,
    .industries-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Animations */
section {
    animation: fadeIn 0.6s ease-out;
}

.performance-improvements-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .performance-improvements-wrapper {
        width: 100%;
        padding: 0 1rem;
    }
    
    .performance-improvements {
        margin: 3rem 0;
        padding: 1rem;
    }
}

.performance-improvements {
    width: 100%;
    margin: 4rem 0;
    background: var(--surface);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--surface-variant);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.performance-improvements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(235, 165, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235, 165, 0, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.performance-improvements:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.performance-improvements h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--on-surface);
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 50%, #FFE5B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
}

.performance-improvements h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.performance-improvements .subtitle {
    text-align: center;
    color: var(--on-surface-variant);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.performance-improvements table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: var(--font-size-md);
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    display: block;
}

.performance-improvements th,
.performance-improvements td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.performance-improvements td:nth-child(2) {
    color: var(--error);
}

.performance-improvements td:nth-child(3) {
    color: var(--success);
}

.performance-improvements td:nth-child(4) {
    color: var(--primary);
    font-weight: 600;
}

.performance-improvements tr td:first-child {
    font-weight: 500;
    color: var(--on-surface);
    min-width: 200px;
}

@media (max-width: 768px) {
    .performance-improvements table {
        font-size: var(--font-size-sm);
    }

    .performance-improvements th,
    .performance-improvements td {
        padding: 0.75rem;
    }

    .performance-improvements tr td:first-child {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .performance-improvements table {
        font-size: var(--font-size-xs);
    }

    .performance-improvements th,
    .performance-improvements td {
        padding: 0.5rem;
    }

    .performance-improvements tr td:first-child {
        min-width: 120px;
    }
}

.charts-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .charts-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Phone Input Styling */
.phone-input-container {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.country-select {
    flex: 0 0 120px;
    padding: 0.75rem 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #FFFFFF;
    font-size: 0.95rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.country-select:hover {
    background: rgba(0, 0, 0, 0.25);
}

.country-select:focus {
    outline: none;
}

.country-select option {
    padding: 8px;
    background-color: var(--surface);
    color: var(--on-surface);
}

.phone-input-container input[type="tel"] {
    flex: 1;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-size: 1rem;
}

.phone-input-container input[type="tel"]:hover,
.phone-input-container input[type="tel"]:focus {
    transform: none;
    box-shadow: none;
    background: transparent;
    outline: none;
}

.phone-input-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #FAFAFA;
}

.phone-input-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(235, 165, 0, 0.15);
    background: #F5F5F5;
}

@media (max-width: 768px) {
    .phone-input-container {
        display: flex;
        flex-direction: row;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .country-select {
        flex: 0 0 90px;
        min-width: 90px;
        max-width: 90px;
    }
}

.input-hint {
    color: var(--on-surface-variant);
    font-size: 0.8rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Input validation styling */
.phone-input-container.invalid input[type="tel"] {
    border-color: var(--error);
}

.phone-input-container.valid input[type="tel"] {
    border-color: var(--success);
}

/* Enhanced Animations */
@keyframes focusIn {
    0% {
        transform: scale(0.98) translateY(0);
    }
    50% {
        transform: scale(1.02) translateY(-4px);
    }
    100% {
        transform: scale(1) translateY(-2px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.phone-input-container:focus-within {
    animation: focusIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-input-container::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.phone-input-container:focus-within::after {
    opacity: 1;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .phone-input-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .country-select {
        width: 100%;
        min-width: 100%;
    }
    
    .phone-input-container input[type="tel"] {
        width: 100%;
    }

    .input-hint {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* Add smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus styles for accessibility */
:focus {
    outline: none;
}

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

/* Add custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-variant);
    border-radius: 6px;
    border: 3px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Our Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-variant) 0%, var(--primary) 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));  /* Increased from 280px */
    gap: 2.5rem;  /* Increased from 2rem */
    margin-top: 3rem;
}

.solution-item {
    background: var(--surface);
    border-radius: 20px;  /* Increased from 16px */
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.solution-item .solution-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 165, 0, 0.12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.25rem;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.solution-item:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(235, 165, 0, 0.25);
    background: rgba(235, 165, 0, 0.18);
}

.solution-item h3 {
    margin-bottom: 1rem;
    color: var(--on-primary-container);
    font-size: 1.5rem;  /* Increased from 1.25rem */
}

.solution-item p {
    color: var(--on-surface-variant);
    font-size: 1.1rem;  /* Increased from 0.95rem */
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Adjust responsive sizing */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-item .solution-icon {
        width: 8rem;  /* Slightly smaller on mobile but still prominent */
        height: 8rem;
        font-size: 3rem;
    }
}

.solution-tag {
    background: var(--primary-container);
    color: var(--on-primary-container);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Challenges and Solutions Section */
.challenges-solutions-section {
    padding: 80px 0;
    background-color: var(--surface);
    position: relative;
    overflow: hidden;
}

.challenges-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-variant) 100%);
}

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

.challenge-solution-item {
    background: var(--background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.challenge-solution-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.challenge-icon, .solution-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.challenge-icon {
    background: rgba(235, 165, 0, 0.15);
    color: #ffcc55;
    box-shadow: 0 4px 12px rgba(235, 165, 0, 0.1);
}

.solution-icon {
    background: rgba(76, 175, 80, 0.15);
    color: var(--positive);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.challenge-solution-item:hover .challenge-icon {
    transform: scale(1.1);
    background: rgba(235, 165, 0, 0.2);
}

.challenge-solution-item:hover .solution-icon {
    transform: scale(1.1);
    background: rgba(76, 175, 80, 0.2);
}

.challenge-solution-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.challenge-solution-item h3:first-of-type {
    color: #f9be00;
}

.challenge-solution-item h3:last-of-type {
    color: var(--positive);
}

.challenge-solution-item p {
    color: var(--on-surface-variant);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.solution-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    height: 1px;
    background: var(--surface-variant);
}

.solution-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background);
    padding: 0 1rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced RFID Ecosystem Section */
.solutions-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-variant) 0%, var(--primary) 100%);
}

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

.solution-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--surface-variant);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.solution-item .solution-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 165, 0, 0.12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.25rem;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.solution-item h3 {
    margin-bottom: 0.75rem;
    color: var(--on-primary-container);
    font-size: 1.25rem;
}

.solution-item p {
    color: var(--on-surface-variant);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-tag {
    background: var(--primary-container);
    color: var(--on-primary-container);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments for both sections */
@media (max-width: 768px) {
    .challenges-solutions-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-solution-item,
    .solution-item {
        padding: 1.5rem;
    }
    
    .solution-item .solution-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

.pricing-note {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: #757575;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dotted var(--primary);
    padding-bottom: 2px;
}

.pricing-note a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* Enhanced Form Styling */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #E0E0E0;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #F5F5F5;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(235, 165, 0, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9E9E9E;
}

.input-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #9E9E9E;
    font-style: italic;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.contact-form .cta-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(235, 165, 0, 0.25);
}

.contact-form .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.35);
    background: linear-gradient(135deg, #FFD166, #EBA500);
}

/* Required field indicator */
.required {
    color: var(--primary);
    font-weight: bold;
    margin-left: 2px;
}

/* Remove duplicate asterisk */
.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="phone"]::after,
.form-group label[for="company"]::after,
.form-group label[for="industry"]::after,
.form-group label[for="message"]::after {
    content: '';
}

/* Footer Styling */
.modern-footer {
    position: relative;
    background-color: #FFFFFF;
    padding: 80px 0 30px;
    overflow: hidden;
    border-top: 1px solid rgba(235, 165, 0, 0.1);
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.footer-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(235, 165, 0, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(235, 165, 0, 0.03) 0%, transparent 60%);
    opacity: 0.7;
}

.modern-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 0.5rem;
    width: max-content;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.footer-logo .grid-icon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    height: 100%;
    gap: 2px;
}

.footer-logo .grid-cell {
    background-color: #EBA500;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
}

.footer-tagline {
    color: #A0A0A0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 300px;
    margin-top: 0.5rem;
}

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

.footer-column h3 {
    color: #EBA500;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #EBA500, rgba(235, 165, 0, 0.3));
    border-radius: 1px;
}

.footer-column a {
    display: block;
    color: #BBBBBB;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent rgba(235, 165, 0, 0);
    transition: all 0.25s ease;
    opacity: 0;
}

.footer-column a:hover::before {
    left: -15px;
    border-color: transparent transparent transparent rgba(235, 165, 0, 0.8);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #BBBBBB;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(235, 165, 0, 0.1);
    transform: translateY(-3px);
    color: #EBA500;
    border-color: rgba(235, 165, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #888888;
    font-size: 0.9rem;
}

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

.footer-badge {
    font-size: 0.8rem;
    background: rgba(235, 165, 0, 0.1);
    color: #EBA500;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    border: 1px solid rgba(235, 165, 0, 0.15);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-tagline {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

.newsletter-form {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form h3 {
    color: #EBA500;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-form p {
    color: #A0A0A0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-form-group {
    display: flex;
    margin-top: 0.75rem;
    position: relative;
    max-width: 350px;
}

.footer-form-group input[type="email"] {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-form-group input[type="email"]:focus {
    outline: none;
    border-color: rgba(235, 165, 0, 0.3);
    background: #FAFAFA;
    box-shadow: 0 0 0 3px rgba(235, 165, 0, 0.1);
}

.footer-form-group input[type="email"]::placeholder {
    color: #777777;
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #EBA500, #FFD166);
    border: none;
    border-radius: 6px;
    color: #0A0B0F;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: linear-gradient(90deg, #FFD166, #EBA500);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 10px rgba(235, 165, 0, 0.3);
}

@media (max-width: 480px) {
    .footer-form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .subscribe-btn {
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        width: 100%;
        padding: 0.75rem;
    }
    
    .subscribe-btn:hover {
        transform: scale(1.02);
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.scroll-top-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.6;
    z-index: -1;
    transform: scale(1);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.scroll-top-icon {
    font-size: 1.2rem;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover .scroll-top-icon {
    transform: rotate(-90deg) translateX(-3px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

.mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown 0.5s ease forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-section:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu-section:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu-section:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EBA500;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.mobile-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #EBA500, rgba(235, 165, 0, 0.3));
    border-radius: 1px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.mobile-menu-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1rem;
    width: 80%;
    text-align: center;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
}

.mobile-menu-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-links a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-links a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-links a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-links a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu-links a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu-links a:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu-links a:nth-child(8) { animation-delay: 0.45s; }

.mobile-menu-social {
    display: flex;
    gap: 1rem;
    margin: 1rem auto;
    justify-content: center;
    animation: fadeIn 0.5s ease 0.4s forwards;
    opacity: 0;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #BBBBBB;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.mobile-menu-social a:hover {
    background: rgba(235, 165, 0, 0.1);
    transform: translateY(-3px);
    color: #EBA500;
    border-color: rgba(235, 165, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-cta {
    margin-top: 2rem;
    width: 80%;
    animation: fadeIn 0.5s ease 0.5s forwards;
    opacity: 0;
}

.mobile-menu-cta .cta-button {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.35);
}

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

.menu-close-btn {
    animation: fadeIn 0.3s ease forwards;
    z-index: 2000 !important;
}

.mobile-menu-links a:hover, 
.mobile-menu-links a:focus {
    background: rgba(235, 165, 0, 0.1);
    color: #EBA500;
    transform: translateY(-2px);
    border-color: rgba(235, 165, 0, 0.2);
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent rgba(235, 165, 0, 0);
    transition: all 0.25s ease;
    opacity: 0;
}

.mobile-menu-links a:hover::before {
    left: 10px;
    border-color: transparent transparent transparent rgba(235, 165, 0, 0.8);
    opacity: 1;
}

.mobile-menu-divider {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 1rem auto;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    #nav-links.active {
        padding-top: 80px !important;
/* Mobile menu styles removed - now in mobile-menu.css */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 4rem;
    font-size: 1.2rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
        padding-bottom: 1.25rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin: 1rem auto 3rem;
        padding: 0 1.5rem;
    }
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(235, 165, 0, 0.1);
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(235, 165, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bottom-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 50%, #FFE5B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.bottom-cta p {
    font-size: 1.4rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .primary-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.3);
}

.cta-buttons .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cta-buttons .secondary-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .secondary-button:hover {
    background: rgba(235, 165, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.15);
}

@media (max-width: 768px) {
    .bottom-cta {
        padding: 60px 0;
    }

    .bottom-cta h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .bottom-cta p {
        font-size: 1.2rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .cta-buttons .primary-button,
    .cta-buttons .secondary-button {
        width: 100%;
        text-align: center;
    }
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(235, 165, 0, 0.1);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(235, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.1;
    pointer-events: none;
    animation: drift 60s linear infinite;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 50%, #FFE5B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(235, 165, 0, 0.3);
}

.cta-section p {
    font-size: 1.4rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons .cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(235, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-buttons .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 165, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cta-buttons .cta-button:hover::after {
    left: 100%;
}

.cta-buttons .secondary-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    padding: calc(1.2rem - 2px) calc(3rem - 2px);
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-buttons .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(235, 165, 0, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-buttons .secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.15);
    color: #fff;
    border-color: var(--primary-light);
}

.cta-buttons .secondary-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

/* Remove underlines from button links */
.cta-button,
.secondary-button,
.get-a-quote,
#nav-menu a,
#demo-request-btn,
.nav-links a {
    text-decoration: none !important;
}

.nav-links a::after,
.logo-container::after,
.logo-text::after {
    display: none !important;
}

/* Ensure buttons have consistent hover effects without underlines */
.cta-button:hover,
.secondary-button:hover,
.get-a-quote:hover,
#nav-menu a:hover,
#demo-request-btn:hover {
    text-decoration: none !important;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}
/* Color transition animation */
@keyframes colorTransition {
    0% { background-color: var(--primary-dark); }
    50% { background-color: var(--primary-light); }
    100% { background-color: var(--primary-dark); }
}

/* RFID Solutions Section */
#rfid-solutions {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#rfid-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(235, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(80, 68, 42, 0.08) 0%, transparent 50%),
        url('/img/grid-pattern.svg');
    pointer-events: none;
    opacity: 0.4;
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

#rfid-solutions .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#rfid-solutions h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
}

#rfid-solutions h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgba(235, 165, 0, 0.5), rgba(255, 197, 41, 0.8));
    border-radius: 4px;
}

#rfid-solutions .section-subtitle {
    text-align: center;
    color: #555555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rfid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.rfid-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFC529;
    position: relative;
}

.rfid-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.5rem;
}

.rfid-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rfid-advantage-item {
    background: rgba(15, 16, 19, 0.5);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rfid-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(235, 165, 0, 0.15);
    border-color: rgba(235, 165, 0, 0.3);
}

.rfid-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.rfid-advantage-item:hover::before {
    transform: translateX(100%);
}

.advantage-icon {
    font-size: 2rem;
    color: #FFC529;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(235, 165, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: block; /* Show the circle again */
    animation: pulse 2s infinite; /* Restore animation */
}

.rfid-advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.rfid-advantage-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
}

.rfid-advantage-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #757575;
}

.rfid-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
}

.rfid-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.rfid-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.overlay-content {
    background: rgba(15, 16, 19, 0.85);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(235, 165, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    max-width: 90%;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.rfid-image-container:hover .overlay-content {
    transform: translateY(-5px);
}

.overlay-content h4 {
    color: #FFC529;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
}

.overlay-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.overlay-content ul li {
    color: #333333;
    padding: 0.6rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.overlay-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC529;
    font-weight: bold;
}

.rfid-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(235, 165, 0, 0.2);
    border-color: rgba(235, 165, 0, 0.2);
}

.rfid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.rfid-image-container:hover .rfid-image {
    transform: scale(1.05);
}

.rfid-applications {
    margin-top: 6rem;
}

.rfid-applications h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #FFC529;
    text-align: center;
    position: relative;
}

.rfid-applications h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, rgba(235, 165, 0, 0.5), rgba(255, 197, 41, 0.8));
    border-radius: 4px;
}

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

.application-item {
    background: rgba(25, 27, 31, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(235, 165, 0, 0.15);
    border-color: rgba(235, 165, 0, 0.3);
}

.application-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.application-item:hover::before {
    transform: translateX(100%);
}

.application-icon {
    font-size: 2.5rem;
    color: #FFC529;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.application-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(235, 165, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.application-item:hover .application-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.application-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.application-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #757575;
}

.rfid-cta {
    margin-top: 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(235, 165, 0, 0.15), rgba(255, 197, 41, 0.05));
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(235, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rfid-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.8s;
}

.rfid-cta:hover::before {
    transform: translateX(100%);
}

.rfid-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFC529;
}

.rfid-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rfid-cta .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFC529 0%, #EBA500 100%);
    color: #0A0B0F;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.rfid-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.rfid-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 165, 0, 0.3);
}

.rfid-cta .cta-button:hover::before {
    transform: translateX(100%);
}

@media (max-width: 968px) {
    .rfid-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .rfid-advantages {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .rfid-cta {
        padding: 3rem 2rem;
    }
    
    .rfid-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    #rfid-solutions {
        padding: 70px 0;
    }
    
    #rfid-solutions h2 {
        font-size: 1.8rem;
    }
    
    .rfid-content h3 {
        font-size: 1.6rem;
    }
    
    .rfid-applications h3 {
        font-size: 1.6rem;
    }
    
    .rfid-cta {
        padding: 2rem 1.5rem;
    }
}

/* View All Features Button */
.view-all-features {
    margin-top: 2rem;
    text-align: center;
}

.view-all-features .secondary-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-features .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 165, 0, 0.2);
}

/* Button styles */
.btn--secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--on-surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    margin: 0.5rem;
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* CTA Buttons in CTA sections */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn--primary,
.cta-buttons .btn--secondary {
    display: inline-block; /* Ensure buttons are always visible */
    text-align: center;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn--primary,
    .cta-buttons .btn--secondary {
        width: 100%;
        max-width: 300px;
    }
}


}