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

:root {
    --primary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e3a8a;
    --slate-gray: #334155;
    --dark-navy: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --green: #10b981;

    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--slate-800) 100%);
    --gradient-card: linear-gradient(135deg, var(--slate-800), var(--slate-700));
    --gradient-border: linear-gradient(45deg, var(--primary-blue), #8b5cf6, #06b6d4, var(--primary-blue));

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loaded {
    transition: var(--transition);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 8px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.header-monogram {
    width: 45px;
    height: 45px;
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.header-monogram::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-border);
    border-radius: 12px;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-100);
}

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

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-400);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--light-blue);
    background: rgba(59, 130, 246, 0.1);
}

/* Navigation CTA Button */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    background-position: 100% 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--slate-400);
    border-radius: 2px;
    transition: var(--transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.theme-toggle {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--slate-400);
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
    display: block;
}

.theme-toggle:hover {
    opacity: 1;
}

.theme-toggle:hover svg {
    stroke: var(--light-blue);
}

body.light-theme .theme-toggle svg {
    stroke: var(--slate-600);
}

body.light-theme .theme-toggle:hover svg {
    stroke: var(--primary-blue);
}

/* Nav toggles container */
.nav-toggles {
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-toggle {
    background: transparent;
    border: none;
    padding: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    outline: none;
    opacity: 0.7;
}

.language-toggle .lang-code {
    display: none;
}

.language-toggle:hover {
    opacity: 1;
}

.language-toggle .flag {
    font-size: 1.2rem;
    line-height: 1;
}

body.light-theme .language-toggle {
    color: var(--slate-600);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page {
    display: none;
    min-height: calc(100vh - 80px);
    transition: var(--transition);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('team-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 41, 59, 0.4) 100%);
    z-index: -1;
}

body.light-theme .hero::after {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
}

/* Keep dark theme styling for hero content in light theme (due to background image) */
body.light-theme .hero .monogram {
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    color: var(--light-blue);
}

body.light-theme .hero .logo-text {
    color: var(--slate-100);
}

body.light-theme .hero .systems-text {
    color: var(--slate-400);
}

body.light-theme .hero .hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .hero .hero-description {
    color: var(--slate-400);
}

body.light-theme .hero .card-title {
    color: var(--slate-100);
}

body.light-theme .hero .icon-only {
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    color: var(--light-blue);
}

body.light-theme .hero .control-item span {
    color: var(--slate-400);
}

body.light-theme .hero .stat-desc {
    color: var(--slate-400);
}

/* Floating card in light theme */
body.light-theme .floating-card .icon-only {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 2px solid var(--primary-blue);
    color: var(--dark-blue);
}

body.light-theme .floating-card .card-title {
    color: var(--slate-800);
}

body.light-theme .floating-card .control-item span {
    color: var(--slate-600);
}

body.light-theme .floating-card .stat-desc {
    color: var(--slate-600);
}

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

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.primary-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.monogram {
    width: 70px;
    height: 70px;
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 26px;
    color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.monogram::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-border);
    border-radius: 16px;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--slate-100);
    letter-spacing: -0.02em;
}

.systems-text {
    font-weight: 300;
    color: var(--slate-400);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--slate-400);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-position: 100% 0;
}

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

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

body.light-theme .btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

body.light-theme .btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.floating-card {
    background: rgb(30, 41, 59);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-only {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--light-blue);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-100);
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.toggle {
    width: 50px;
    height: 26px;
    background: var(--slate-600);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle.active {
    background: var(--primary-blue);
}

.toggle.active::before {
    transform: translateX(24px);
}

/* Dashboard Stats & Mini Chart */
.dashboard-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    padding: 5px 0;
}

.chart-bar {
    width: 8px;
    background: var(--slate-600);
    border-radius: 4px;
    transition: var(--transition);
}

.chart-bar.active {
    background: var(--primary-blue);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--slate-400);
}

body.light-theme .dashboard-stats {
    background: rgba(59, 130, 246, 0.08);
}

body.light-theme .chart-bar {
    background: var(--slate-300);
}

body.light-theme .chart-bar.active {
    background: var(--primary-blue);
}

body.light-theme .stat-desc {
    color: var(--slate-600);
}

/* Page Layout */
.page-header {
    text-align: center;
    padding: 120px 0 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-100);
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.3rem;
    color: var(--slate-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

/* 6-column services grid for better layout */
.services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 768px) {
    .services-grid-6 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: var(--light-blue);
    transform: scale(1.1);
}

body.light-theme .service-icon svg {
    stroke: var(--dark-blue);
}

body.light-theme .service-card:hover .service-icon svg {
    stroke: var(--primary-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--slate-400);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: var(--slate-400);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* About Section */
.about-mission {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-mission h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 20px;
}

.about-mission p {
    color: var(--slate-400);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Team Section */
.about-team {
    margin-bottom: 60px;
}

.about-team > h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-100);
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.team-photo {
    margin-bottom: 20px;
    position: relative;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
}

.team-photo img,
.team-photo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--slate-800), var(--slate-800)) padding-box,
                linear-gradient(135deg, var(--primary-blue), #8b5cf6) border-box;
    position: relative;
    z-index: 1;
}

body.light-theme .team-photo img,
body.light-theme .team-photo-img {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-blue), #8b5cf6) border-box;
}

.team-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Custom Solutions Section */
.about-custom {
    margin-bottom: 60px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #8b5cf6, #06b6d4);
}

.custom-image {
    border-radius: 12px;
    overflow: hidden;
}

.custom-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.custom-content {
    text-align: left;
    max-width: 450px;
}

/* When no image, center content */
.about-custom:not(:has(.custom-image img)) {
    grid-template-columns: 1fr;
}

.about-custom:not(:has(.custom-image img)) .custom-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 20px;
}

.custom-content p {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

body.light-theme .about-custom {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .custom-content h3 {
    color: var(--slate-800);
}

body.light-theme .custom-content p {
    color: var(--slate-600);
}

/* About Features */
.about-features {
    margin-bottom: 60px;
}

.about-features > h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-100);
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box svg {
    stroke: var(--white);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Light theme for about */
body.light-theme .about-mission h3,
body.light-theme .about-team > h3,
body.light-theme .about-features > h3 {
    color: var(--slate-800);
}

body.light-theme .about-mission p {
    color: var(--slate-600);
}

body.light-theme .team-card,
body.light-theme .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .team-info h4,
body.light-theme .feature-card h4 {
    color: var(--slate-800);
}

body.light-theme .team-info p,
body.light-theme .feature-card p {
    color: var(--slate-600);
}

/* Legacy about styles (keep for compatibility) */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--slate-400);
    margin: 0;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
}

.stats-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 30px;
    text-align: center;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--slate-400);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.business-card {
    background: var(--gradient-card);
    border: 1px solid var(--primary-blue);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-border);
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-monogram {
    width: 45px;
    height: 45px;
    background: var(--gradient-card);
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--light-blue);
}

.card-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--slate-100);
}

.card-info {
    color: var(--slate-400);
    line-height: 1.8;
}

.info-item {
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--slate-100);
}

/* Team Members */
.team-members {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.team-member {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.team-member strong {
    display: block;
    font-size: 1.1rem;
    color: var(--slate-100);
    margin-bottom: 4px;
}

.member-role {
    display: block;
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.85rem;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

body.light-theme .team-member {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .team-member strong {
    color: var(--slate-800);
}

body.light-theme .contact-item {
    color: var(--slate-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h3 {
    color: var(--slate-100);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.form-intro p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.light-theme .form-intro h3 {
    color: var(--slate-800);
}

body.light-theme .form-intro p {
    color: var(--slate-600);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
}

.required {
    color: #ef4444;
    font-weight: 600;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--slate-100);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select option {
    background: var(--slate-800);
    color: var(--white);
    padding: 8px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compact-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.compact-monogram {
    width: 45px;
    height: 45px;
    background: var(--gradient-card);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--light-blue);
}

.compact-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-100);
}

.compact-systems {
    font-weight: 300;
    color: var(--slate-400);
}

.footer-logo p {
    color: var(--slate-400);
    max-width: 300px;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.8rem;
    padding: 3px 0;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

body.light-theme .footer-contact-item {
    color: var(--slate-600);
}

.footer-section h4 {
    color: var(--slate-100);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: var(--slate-400);
    text-decoration: none;
    padding: 5px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-400);
}

/* Platform Section */
.platform-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    padding: 12px 24px;
    color: var(--light-blue);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.feature-badge svg {
    flex-shrink: 0;
}

.platform-content {
    margin-top: 60px;
    padding-bottom: 80px;
}

.platform-showcase {
    display: grid;
    gap: 40px;
}

.screenshot-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-light {
    display: none;
}

.screenshot-dark {
    display: block;
}

body.light-theme .screenshot-light {
    display: block;
}

body.light-theme .screenshot-dark {
    display: none;
}

body.light-theme .screenshot-img {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.screenshot-info {
    padding: 30px;
}

.screenshot-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.screenshot-info p {
    color: var(--slate-300);
    line-height: 1.8;
}

/* Animations */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Light Theme */
body.light-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--slate-800);
}

body.light-theme .navbar {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .header-text,
body.light-theme .page-title,
body.light-theme .logo-text,
body.light-theme .card-text,
body.light-theme .compact-text {
    color: var(--slate-800);
}

body.light-theme .systems-text,
body.light-theme .compact-systems {
    color: var(--slate-600);
}

body.light-theme .nav-item {
    color: var(--slate-600);
}

body.light-theme .nav-item:hover,
body.light-theme .nav-item.active {
    color: var(--dark-blue);
    background: rgba(59, 130, 246, 0.1);
}

body.light-theme .service-card,
body.light-theme .floating-card,
body.light-theme .stats-card,
body.light-theme .contact-form,
body.light-theme .business-card,
body.light-theme .screenshot-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .service-card h3,
body.light-theme .feature-item h4,
body.light-theme .stats-card h3,
body.light-theme .card-title,
body.light-theme .card-text,
body.light-theme .info-item strong,
body.light-theme .screenshot-info h3 {
    color: var(--slate-800);
}

body.light-theme .service-card p,
body.light-theme .service-card li,
body.light-theme .feature-item p,
body.light-theme .stat-label,
body.light-theme .page-description,
body.light-theme .screenshot-info p,
body.light-theme .card-info {
    color: var(--slate-600);
}

body.light-theme .feature-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary-blue);
}

body.light-theme .header-monogram,
body.light-theme .monogram,
body.light-theme .compact-monogram,
body.light-theme .icon-only,
body.light-theme .card-monogram {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 2px solid var(--primary-blue);
    color: var(--dark-blue);
}

body.light-theme .footer {
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .footer-section h4,
body.light-theme .compact-text {
    color: var(--slate-800);
}

body.light-theme .footer-logo p,
body.light-theme .footer-section a,
body.light-theme .footer-bottom p,
body.light-theme .compact-systems {
    color: var(--slate-600);
}

body.light-theme .footer-section a:hover {
    color: var(--dark-blue);
}

body.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .form-group label {
    color: var(--slate-800);
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--slate-800);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder {
    color: var(--slate-400);
}

body.light-theme .form-group select {
    background-color: rgba(0, 0, 0, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

body.light-theme .form-group select option {
    background: var(--white);
    color: var(--slate-800);
}

body.light-theme .mobile-menu-toggle span {
    background: var(--slate-700);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .primary-logo {
        justify-content: center;
    }

    .floating-card {
        transform: none !important;
    }

    .about-custom {
        grid-template-columns: 1fr;
    }

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

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

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    body.light-theme .nav-menu {
        background: rgba(248, 250, 252, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .theme-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggles {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

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

    .logo-text {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-logo {
        align-items: center;
    }

    .footer-logo p {
        text-align: center;
        max-width: 100%;
    }

    .container {
        padding: 0 15px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .page-header {
        padding: 40px 0 30px;
    }

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

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

    .primary-logo {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .monogram {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .floating-card {
        transform: none !important;
        margin: 0 auto;
    }

    .service-card,
    .floating-card,
    .stats-card,
    .contact-form,
    .business-card {
        padding: 25px;
    }
}