/*
Theme Name: SG Consulting AI Operating System
Description: Complete AI Operating System WordPress theme with animations and modern design
Version: 1.0
Author: SG Consulting
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Color Variables - HSL format for consistency */
:root {
    --green-400: 138, 74%, 59%;
    --green-500: 142, 71%, 45%;
    --green-600: 142, 76%, 36%;
    --emerald-500: 160, 84%, 39%;
    --emerald-600: 158, 64%, 52%;
    --gray-300: 212, 17%, 81%;
    --gray-400: 213, 27%, 84%;
    --gray-500: 220, 9%, 46%;
    --gray-600: 215, 14%, 34%;
    --gray-800: 217, 19%, 27%;
    --gray-900: 222, 47%, 11%;
    --white: 0, 0%, 100%;
    --black: 0, 0%, 0%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid hsla(var(--green-400), 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease-out;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: hsl(var(--green-400));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.5s ease-out;
    transform: translate(-50%, -50%);
}

/* Background Elements */
.bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.bg-circle-1 {
    top: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: hsl(var(--green-500));
}

.bg-circle-2 {
    bottom: -160px;
    left: -160px;
    width: 384px;
    height: 384px;
    background: hsl(var(--gray-500));
}

.bg-circle-3 {
    top: 50%;
    left: 50%;
    width: 384px;
    height: 384px;
    background: hsl(var(--green-600));
    opacity: 0.1;
    transform: translate(-50%, -50%);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(var(--green-500), 0.3);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, hsl(var(--black)), hsl(var(--gray-800)), hsl(var(--black)));
    border: 2px solid hsl(var(--white));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-text {
    color: hsl(var(--white));
    font-weight: 900;
    font-size: 20px;
}

.logo-accent {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 6px;
    background: hsl(var(--green-500));
    transform: rotate(12deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    color: hsl(var(--white));
    letter-spacing: -0.025em;
}

.brand-subtitle {
    font-size: 12px;
    color: hsl(var(--green-400));
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: hsl(var(--gray-300));
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--green-400));
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(to right, hsl(var(--green-600)), hsl(var(--emerald-600)));
    color: hsl(var(--black));
    box-shadow: 0 10px 30px hsla(var(--green-500), 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, hsl(var(--green-500)), hsl(var(--emerald-500)));
    transform: scale(1.05);
    box-shadow: 0 15px 40px hsla(var(--green-500), 0.4);
}

.btn-outline {
    border: 2px solid hsla(var(--green-400), 0.6);
    color: hsl(var(--green-300));
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: hsla(var(--green-500), 0.2);
    border-color: hsl(var(--green-400));
}

.btn-lg {
    padding: 24px 48px;
    font-size: 20px;
    font-weight: 900;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 128px 24px 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(to right, hsla(var(--green-500), 0.2), hsla(var(--emerald-500), 0.2));
    border: 1px solid hsla(var(--green-500), 0.4);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(48px, 8vw, 144px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(to right, hsl(var(--green-400)), hsl(var(--white)), hsl(var(--green-400)));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-description {
    font-size: clamp(18px, 3vw, 24px);
    color: hsl(var(--gray-300));
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Stats Section */
.stats {
    padding: 96px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: scale(1.25);
}

.stat-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-emoji {
    animation: bounce 0.6s ease;
}

.stat-number {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(to right, hsl(var(--green-400)), hsl(var(--white)));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.25);
}

.stat-label {
    color: hsl(var(--gray-400));
    font-weight: 600;
    font-size: 18px;
}

/* Products Section */
.products {
    padding: 128px 24px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(to right, hsla(var(--green-500), 0.2), hsla(var(--emerald-500), 0.2));
    border: 1px solid hsla(var(--green-500), 0.4);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.section-title {
    font-size: clamp(48px, 6vw, 112px);
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 32px;
    letter-spacing: -0.025em;
}

.products-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 48px 40px !important;
}
.product-card,
.service-card {
  display: flex !important;
  flex-direction: column !important;
}
.product-card .product-features,
.product-card .feature-list,
.product-card .features,
.service-card .service-features,
.service-card .feature-list,
.service-card .features {
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
  flex: 1 1 auto !important;
}
.product-card .card-footer,
.product-card .btn,
.product-card .btn-primary,
.product-card .product-url,
.service-card .card-footer,
.service-card .btn,
.service-card .btn-primary,
.service-card .service-url {
  margin-top: auto !important;
}
.feature-item {
  min-height: 28px;
  line-height: 1.35;
}
.feature-item .check-icon,
.feature-item svg {
  align-self: flex-start;
  margin-top: 2px;
}
.product-card {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 32px 32px 32px;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px 32px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
  padding-left: 18px;
}
.feature-item {
  display: flex;
  align-items: center;
  min-width: 220px;
  margin-bottom: 0;
  text-align: left;
  gap: 12px;
  font-size: 1.13rem;
  color: #fff;
  font-weight: 700;
  white-space: normal;
  border-radius: 8px;
  transition: background 0.2s;
  padding: 6px 8px;
  justify-content: flex-start;
}
.feature-item:hover {
  background: #23272f;
}
.check-icon {
  width: 24px;
  height: 24px;
  color: #34d399;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px #34d39933);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    max-width: 95vw !important;
  }
  .product-card {
    max-width: 95vw;
    padding: 32px 12px;
    min-height: 0;
  }
}

.product-card:hover {
    border-color: hsla(var(--green-400), 0.8);
    transform: scale(1.05);
    box-shadow: 0 30px 60px hsla(var(--green-500), 0.2);
}

.product-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.status-badge {
    padding: 4px 14px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    line-height: 0.8 !important;
}

.status-live {
    background: hsla(var(--green-500), 0.3);
    color: hsl(var(--green-400));
    border: 2px solid hsla(var(--green-500), 0.5);
}

.status-coming-soon {
    background: hsla(var(--gray-500), 0.3);
    color: hsl(var(--gray-400));
    border: 2px solid hsla(var(--gray-500), 0.5);
}

.product-icon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-icon {
    transform: scale(1.25);
}

.product-name {
    font-size: 48px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: hsl(var(--green-300));
}

.product-tagline {
    color: hsl(var(--green-400));
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}

.product-description {
    color: hsl(var(--gray-300));
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 32px;
}

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

.feature-item {
display: flex;
align-items: center;
color: hsl(var(--gray-300));
font-weight: 600;
transition: color 0.3s ease;
}

.product-card .feature-item,
.service-card .feature-item {
align-items: flex-start !important;
}

.product-card .feature-item .check-icon,
.service-card .feature-item .check-icon,
.product-card .feature-item svg,
.service-card .feature-item svg {
margin-top: 2px;
}

.product-card:hover .feature-item {
color: hsl(var(--white));
}

.check-icon {
    width: 20px;
    height: 20px;
    color: hsl(var(--green-400));
    margin-right: 12px;
    flex-shrink: 0;
}

.product-url {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid hsla(var(--green-500), 0.3);
    transition: border-color 0.3s ease;
    backdrop-filter: blur(8px);
}

.product-card:hover .product-url {
    border-color: hsla(var(--green-400), 0.6);
}

/* Services Carousel */
.services {
    padding: 128px 24px;
}

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

.carousel-container {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 32px;
  min-width: 100%;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  animation: carousel-scroll 32s linear infinite;
  will-change: transform;
}
.carousel-container:hover .carousel-track,
.carousel-container:focus-within .carousel-track {
  animation-play-state: paused;
}
@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-container {
  scrollbar-width: none;
}
.service-card {
  min-width: 340px;
  max-width: 400px;
  flex: 0 0 340px;
}
@media (max-width: 900px) {
  .service-card {
    min-width: 90vw;
    max-width: 95vw;
    padding: 32px 12px;
  }
}

.service-card:hover {
    border-color: hsla(var(--green-500), 0.6);
    transform: scale(1.05);
    box-shadow: 0 30px 60px hsla(var(--green-500), 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.25);
}

.service-title {
    font-size: 36px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(var(--green-300));
}

.service-description {
    color: hsl(var(--gray-400));
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 18px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features .feature-item {
    margin-bottom: 16px;
}

.service-details {
    font-size: 14px;
    color: hsl(var(--gray-500));
    border: none !important;
    padding-top: 24px;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 128px 24px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(var(--green-900), 0.2), hsla(var(--gray-900), 0.2));
    z-index: -1;
}

.about-content {
    display: grid;
    gap: 80px;
    margin-top: 96px;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-section h3 {
    font-size: 48px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 40px;
}

.about-section p {
    color: hsl(var(--gray-300));
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-features {
    margin-top: 24px;
}

.about-features .feature-item {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
}

.about-features .check-icon {
    width: 32px;
    height: 32px;
    margin-right: 24px;
    transition: transform 0.3s ease;
}

.about-features .feature-item:hover .check-icon {
    transform: scale(1.25);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.industry-card {
    background: rgba(55, 65, 81, 0.6);
    border: 2px solid hsla(var(--green-500), 0.3);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.industry-card:hover {
    background: rgba(55, 65, 81, 0.8);
    border-color: hsla(var(--green-500), 0.6);
    transform: scale(1.1);
}

.industry-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}

.industry-name {
    font-weight: 700;
    font-size: 18px;
}

/* Contact Section */
.contact {
    padding: 128px 24px;
}

.contact-content {
    display: grid;
    gap: 64px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h3 {
    font-size: 48px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-details .contact-label {
    color: hsl(var(--gray-400));
    font-size: 18px;
}

.contact-details .contact-value {
    color: hsl(var(--white));
    font-weight: 700;
    font-size: 20px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid hsla(var(--green-500), 0.4);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card h4 {
    font-size: 36px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 24px;
}

.contact-card p {
    color: hsl(var(--gray-400));
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Map */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 400px;
    border: 2px solid hsla(var(--green-500), 0.4);
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.95), rgba(0, 0, 0, 0.95));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    pointer-events: none;
    z-index: 10;
}

.map-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid hsla(var(--green-500), 0.3);
    z-index: 20;
}

.map-label-content {
    display: flex;
    align-items: center;
    color: hsl(var(--green-400));
}

.map-label-content svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.map-label-content span {
    font-weight: 700;
}

/* Blog Section */
.blog {
    padding: 128px 24px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(17, 24, 39, 0.95));
}

.blog-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid hsla(var(--green-500), 0.3);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    border-color: hsla(var(--green-400), 0.6);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px hsla(var(--green-500), 0.2);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 14px;
}

.blog-date {
    color: hsl(var(--gray-400));
    font-weight: 500;
}

.blog-category {
    background: hsla(var(--green-500), 0.2);
    color: hsl(var(--green-400));
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid hsla(var(--green-500), 0.3);
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: hsl(var(--white));
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: hsl(var(--green-400));
}

.blog-excerpt {
    color: hsl(var(--gray-300));
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: hsl(var(--green-400));
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: hsl(var(--green-300));
    transform: translateX(4px);
}

.blog-link.placeholder {
    color: hsl(var(--gray-500));
    cursor: default;
}

.blog-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 64px;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-container {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid hsla(var(--green-500), 0.4);
    border-radius: 24px;
    padding: 28px;
    max-width: 760px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px hsla(var(--green-500), 0.25) inset;
    animation: slideUp 0.3s ease;
    position: relative;
}

/* Subtle gradient rim glow */
.popup-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: radial-gradient(120% 120% at 10% 0%, hsla(var(--green-500), 0.25), transparent 60%),
                radial-gradient(120% 120% at 90% 100%, hsla(var(--emerald-600), 0.2), transparent 60%);
    z-index: -1;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.popup-header h3 {
    color: hsl(var(--white));
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

/* Optional subtitle style if added later */
.popup-header .subtitle {
    color: hsl(var(--gray-300));
    font-weight: 500;
    font-size: 14px;
    margin-top: 6px;
}

.popup-close {
    background: none;
    border: none;
    color: hsl(var(--gray-400));
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: hsl(var(--white));
    background: hsla(var(--gray-600), 0.3);
}

.popup-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 14px;
}

@media (min-width: 768px) {
  .popup-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .popup-form .form-group:nth-child(5),
  .popup-form button[type="submit"] {
    grid-column: 1 / -1;
  }
}

/* Mobile spacing tweaks for better fit */
@media (max-width: 480px) {
  .popup-container {
    padding: 18px;
    border-radius: 18px;
  }
}

/* Adjust for short viewports to reduce scroll */
@media (max-height: 820px) {
  .popup-container {
    padding: 20px;
    max-height: 82vh;
  }
  .popup-header h3 { font-size: 22px; }
  .popup-container .form-group input,
  .popup-container .form-group textarea { padding: 10px; }
  .popup-container .btn-lg { padding: 12px 18px; font-size: 15px; }
  .form-group textarea { min-height: 90px; }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: hsl(var(--green-300));
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.6), rgba(3, 7, 18, 0.6));
    border: 2px solid hsla(var(--gray-600), 0.5);
    border-radius: 12px;
    padding: 16px;
    color: hsl(var(--white));
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.popup-container .form-group input,
.popup-container .form-group textarea {
    padding: 12px;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--green-400));
    box-shadow: 0 0 0 3px hsla(var(--green-500), 0.25), 0 10px 30px rgba(0,0,0,0.35);
}

/* Placeholder color for better aesthetics */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: hsla(var(--gray-400), 0.85);
}

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

.popup-container .btn-lg {
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px hsla(var(--green-500), 0.25);
}

.popup-container .form-message {
    padding: 20px;
}

/* Themed scrollbar for popup (WebKit) */
.popup-container::-webkit-scrollbar {
  width: 8px;
}
.popup-container::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(17,24,39,0.6), rgba(3,7,18,0.6));
  border-radius: 12px;
}
.popup-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, hsla(var(--green-500), 0.5), hsla(var(--emerald-600), 0.5));
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.35);
}
.popup-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, hsla(var(--green-500), 0.7), hsla(var(--emerald-600), 0.7));
}

/* Firefox scrollbar */
.popup-container {
  scrollbar-width: thin;
  scrollbar-color: hsla(var(--green-500), 0.6) rgba(17,24,39,0.6);
}

.w-full {
    width: 100%;
}

.form-message {
    text-align: center;
    padding: 32px;
}

.form-message svg {
    margin: 0 auto 16px;
    display: block;
}

.form-message.success svg {
    color: hsl(var(--green-400));
}

.form-message.error svg {
    color: hsl(var(--red-400));
}

.form-message h4 {
    color: hsl(var(--white));
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-message p {
    color: hsl(var(--gray-300));
    font-size: 16px;
    line-height: 1.6;
}

.form-message a {
    color: hsl(var(--green-400));
    text-decoration: none;
}

.form-message a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: rgba(55, 65, 81, 0.6);
    border-top: 2px solid hsla(var(--green-500), 0.3);
    padding: 64px 24px;
    backdrop-filter: blur(12px);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-logo .logo {
    width: 64px;
    height: 64px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.footer-brand {
    margin-left: 0;
}

.footer-brand .brand-text {
    font-size: 36px;
}

.footer-description {
    color: hsl(var(--gray-400));
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.6), rgba(0, 0, 0, 0.6));
    border: 2px solid hsla(var(--green-500), 0.3);
    border-radius: 50px;
    color: hsl(var(--gray-300));
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.social-link:hover {
    border-color: hsl(var(--green-400));
    color: hsl(var(--green-400));
    transform: scale(1.05);
    box-shadow: 0 10px 30px hsla(var(--green-500), 0.3);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.instagram {
    border-color: #E1306C;
}
.social-link.instagram svg * {
    stroke: #E1306C !important;
}
.social-link.linkedin {
    border-color: #0077B5;
}
.social-link.linkedin svg * {
    stroke: #0077B5 !important;
    fill: #0077B5 !important;
}
.social-link.youtube {
    border-color: #FF0000;
}
.social-link.youtube svg * {
    stroke: #FF0000 !important;
}

.footer-copyright {
    color: hsl(var(--gray-500));
    font-size: 18px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-15px);
    }
    70% {
        transform: translateY(-7px);
    }
    90% {
        transform: translateY(-2px);
    }
}

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

.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .product-name {
        font-size: 36px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-card {
        min-width: 300px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-6 { gap: 24px; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.pointer-events-none { pointer-events: none; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.block { display: block; }
.hidden { display: none; }

/* Global responsive safeguards */
html, body {
  overflow-x: hidden;
}
img, video, canvas, svg, iframe {
  max-width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-container {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid hsla(var(--green-500), 0.4);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.popup-header h3 {
    font-size: 28px;
    font-weight: 900;
    color: hsl(var(--white));
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: hsl(var(--gray-400));
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: hsl(var(--white));
    background: hsla(var(--gray-500), 0.2);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: hsl(var(--green-400));
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid hsla(var(--gray-500), 0.3);
    border-radius: 12px;
    padding: 16px;
    color: hsl(var(--white));
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--green-400));
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    display: none;
}

.form-message.success {
    background: hsla(var(--green-500), 0.2);
    border: 2px solid hsla(var(--green-500), 0.4);
    color: hsl(var(--green-400));
}

.form-message.error {
    background: hsla(0, 70%, 50%, 0.2);
    border: 2px solid hsla(0, 70%, 50%, 0.4);
    color: hsl(0, 70%, 70%);
}

.form-message svg {
    margin-bottom: 16px;
}

.form-message h4 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 16px 0;
}

.form-message p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Blog Section Styles */
/* .blog {
    padding: 128px 24px;
} */

.blog-grid {
    display: grid;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.blog-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid hsla(var(--green-500), 0.4);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    border-color: hsla(var(--green-400), 0.8);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px hsla(var(--green-500), 0.2);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-date {
    color: hsl(var(--gray-400));
    font-weight: 500;
}

.blog-category {
    background: hsla(var(--green-500), 0.3);
    color: hsl(var(--green-400));
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-title {
    font-size: 24px;
    font-weight: 900;
    color: hsl(var(--white));
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: hsl(var(--green-400));
}

.blog-excerpt {
    color: hsl(var(--gray-300));
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: hsl(var(--green-400));
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: hsl(var(--white));
    transform: translateX(4px);
}

.blog-link.placeholder {
    color: hsl(var(--gray-500));
    cursor: not-allowed;
}

.blog-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
  }
  /* Mobile header: stronger background, tighter spacing */
  .site-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.85)) !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid hsla(var(--green-500), 0.35) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35) !important;
  }
  .site-header { min-height: 64px !important; }
  .header-content {
    padding: 8px 0 !important;
  }
  .logo-container .w-14,
  .logo-container img {
    width: 44px !important;
    height: 44px !important;
  }
  .logo-container span {
    font-size: 1.4rem !important;
  }
  /* Mobile hamburger button visuals */
  .mobile-menu-button {
    display: block !important;
    border: 2px solid hsla(var(--green-500), 0.4) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.06) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(8px) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
  }
  .mobile-menu-button:hover {
    border-color: hsl(var(--green-400)) !important;
    transform: scale(1.05);
  }
  .mobile-menu-button svg {
    transition: transform 0.35s ease, color 0.35s ease;
  }
  .mobile-menu-button.is-active svg {
    transform: rotate(90deg);
    color: hsl(var(--green-400));
  }
  /* Animated dropdown menu */
  @keyframes menuFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .site-header .main-nav.active {
    animation: menuFadeDown 0.25s ease-out;
    position: fixed !important;
    z-index: 1100 !important;
    top: 64px !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 16px !important;
    background: rgba(17, 24, 39, 0.92) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45) !important;
    border-radius: 20px !important;
    overflow: auto !important;
    border: 1px solid hsla(var(--green-500), 0.25) !important;
  }
  .main-nav.active .nav-link,
  .main-nav.active .btn,
  .main-nav.active .btn-primary,
  .main-nav.active .btn-outline {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    font-size: 1.06rem !important;
    line-height: 1.2 !important;
    border: 1px solid transparent !important;
  }
  .main-nav.active .nav-link { 
    color: hsl(var(--white)) !important;
    background: rgba(255,255,255,0.04) !important;
  }
  .main-nav.active .nav-link:focus,
  .main-nav.active .nav-link:hover {
    border-color: hsla(var(--green-500), 0.5) !important;
    background: rgba(16,185,129,0.12) !important;
    outline: none !important;
  }
  .main-nav.active .btn-primary {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    color: #000 !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 30px rgba(16,185,129,0.25) !important;
  }
  /* Lock background scroll when menu is open */
  body.menu-open { overflow: hidden !important; }

  /* Allow hero action buttons to wrap on small screens */
  .hero-actions {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* Disable scale transforms that can cause layout overflow on tap/hover */
  .nav-link,
  .btn,
  .btn-primary,
  .btn-outline,
  .product-card,
  .service-card,
  .industry-card,
  .contact-item,
  .social-link,
  .stat-item,
  .feature-item .check-icon,
  .service-card .service-icon,
  .product-card .product-icon,
  .stat-item .stat-number {
    transform: none !important;
  }
  /* Stats: fix overflow and sizing on mobile */
  .stats {
    padding: 64px 16px !important;
    overflow: hidden !important;
  }
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 14px !important;
    align-items: start !important;
    justify-items: center !important;
  }
  .stat-item {
    width: 100% !important;
    max-width: 240px !important;
    text-align: center !important;
    padding: 6px 4px !important;
    margin: 0 auto !important;
  }
  .stat-item,
  .stat-item:hover {
    transform: none !important; /* disable scale that causes overflow */
  }
  .stat-emoji {
    font-size: 30px !important;
    margin-bottom: 6px !important;
  }
  .stat-number {
    font-size: 34px !important;
    margin-bottom: 6px !important;
  }
  .stat-label {
    font-size: 15px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .products-grid,
  .services-grid,
  .workflows-grid,
  .blog-grid,
  .industries-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .about-content,
  .contact-content {
    flex-direction: column !important;
    gap: 32px !important;
    align-items: stretch !important;
  }
  .footer-logo-img {
    width: 56px !important;
    height: 56px !important;
  }
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-lg {
    padding: 16px 20px !important;
    font-size: 1rem !important;
  }
  .footer-social {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .site-footer {
    padding: 32px 0 16px !important;
  }
  .footer-logo {
    margin-bottom: 16px !important;
  }
  .footer-description {
    margin-bottom: 20px !important;
    font-size: 1rem !important;
  }
  .footer-copyright {
    font-size: 0.95rem !important;
  }
  .section-header {
    margin-bottom: 32px !important;
  }
  .map-container {
    height: 220px !important;
    min-height: 180px !important;
  }
  .map-label {
    font-size: 0.95rem !important;
    padding: 8px 16px !important;
  }
  /* Reposition theme toggle to avoid header overlap */
  .theme-toggle-container {
    top: min(30vh, 20ch) !important;
    right: 16px !important;
  }
  .theme-toggle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(17, 24, 39, 0.35) !important;
    border-color: hsla(var(--green-500), 0.35) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
  }
  /* When menu is open, keep toggle visible but away from menu */
  body.menu-open .theme-toggle-container {
    top: calc(min(30vh, 20ch) + 8px) !important;
  }
  body.menu-open .theme-toggle { opacity: 0.5; pointer-events: none; }
}

.product-features,
.service-features,
.workflow-features,
.about-features {
  display: flow !important;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px 32px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
  padding-left: 18px;
}
.feature-item {
  display: flex;
  align-items: center;
  min-width: 220px;
  margin-bottom: 0;
  text-align: left;
  gap: 12px;
  font-size: 1.13rem;
  color: #fff;
  font-weight: 700;
  white-space: normal;
  border-radius: 8px;
  transition: background 0.2s;
  padding: 6px 8px;
  justify-content: flex-start;
}
.feature-item:hover {
  background: #23272f;
}
.check-icon {
  width: 24px;
  height: 24px;
  color: #34d399;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px #34d39933);
}

/* Dark and Light Theme */

/* Theme Toggle Styles */
.theme-toggle-container {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.theme-toggle .sun-icon {
    display: none;
}

/* Light Mode Styles */
.light-mode {
    background: #f8fafc;
    color: #1e293b;
}

.light-mode .theme-toggle {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.light-mode .theme-toggle:hover {
    border-color: rgba(0, 0, 0, 0.8);
}

.light-mode .theme-toggle .moon-icon {
    display: none;
}

.light-mode .theme-toggle .sun-icon {
    display: block;
}

/* Component Overrides - Important! */
.light-mode .hero-badge,
.light-mode .section-badge {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #047857 !important;
}

.light-mode .hero-title,
.light-mode .section-title,
.light-mode .site-header,
.light-mode .product-name,
.light-mode .service-title,
.light-mode .testimonial-quote,
.light-mode .hero-description > span,
.light-mode .stat-number,
.light-mode .stat-label {
    color: #0f172a !important;
}

.light-mode .hero-description,
.light-mode .product-description,
.light-mode .service-description,
.light-mode .author-company {
    color: #334155 !important;
}

.light-mode .product-card,
.light-mode .service-card,
.light-mode .testimonial-card,
.light-mode .blog-card,
.light-mode .about-section,
.light-mode .workflow-card,
.light-mode .industry-card {
    background: #fff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
}

.light-mode .product-status .status-badge,
.light-mode .product-features .feature-item,
.light-mode .service-features .feature-item {
    color: #047857 !important;
}

.light-mode .feature-item svg,
.light-mode .check-icon {
    stroke: #047857 !important;
}

.light-mode .btn-primary {
    background: linear-gradient(to right, #059669, #10b981) !important;
    color: #000 !important;
}

.light-mode .btn-outline {
    border: 2px solid #047857 !important;
    color: #047857 !important;
    background: transparent !important;
}

.light-mode .gradient-text {
    background: linear-gradient(to right, #059669, #000, #059669) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.light-mode .site-header {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.light-mode .logo {
    border-color: #0f172a !important;
}

.light-mode .brand-text {
    color: #0f172a !important;
}