/* ============================================================
   Xiamen Creator Technology - Main Stylesheet
   www.xmcreator.com
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', ui-sans-serif, system-ui, sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: #0f172a; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #3b82f6, #1e40af); border-radius: 4px; }
::selection { background: #3b82f6; color: white; }

/* Utility Classes */
.text-center { text-align: center; }
.text-blue { color: #3b82f6; }
.text-green { color: #22c55e; }
.text-amber { color: #f59e0b; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Icons */
.icon-xs { width: 0.875rem; height: 0.875rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 3rem; height: 3rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; font-weight: 600; border-radius: 0.5rem;
    transition: all 0.3s ease; cursor: pointer; border: none; font-size: 0.875rem;
}
.btn-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}
.btn-primary:hover { background: linear-gradient(135deg, #1e3a8a, #2563eb); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(30,64,175,0.3); }
.btn-secondary {
    background: white; color: #1e40af;
    border: 2px solid #1e40af;
}
.btn-secondary:hover { background: #eff6ff; transform: translateY(-2px); }
.btn-white {
    background: white; color: #1e40af;
}
.btn-white:hover { background: #eff6ff; }
.btn-outline-white {
    background: transparent; color: white; border: 2px solid white;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Top Bar */
.top-bar {
    background: #1e293b; color: white; font-size: 0.8rem;
    padding: 0.5rem 0; display: none;
}
@media (min-width: 1024px) { .top-bar { display: block; } }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-right { display: flex; align-items: center; gap: 0.5rem; color: #94a3b8; }
.top-bar-link {
    display: flex; align-items: center; gap: 0.5rem;
    color: #cbd5e1; transition: color 0.2s;
}
.top-bar-link:hover { color: #60a5fa; }

/* Header */
.main-header {
    position: sticky; top: 0; z-index: 50;
    background: white; transition: all 0.3s;
}
.main-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

/* Header overlay (transparent on hero) */
.main-header-solid {
    background: transparent !important;
    box-shadow: none !important;
}
.main-header-solid.scrolled {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
}
.nav-link-overlay { color: #1e293b !important; }
.nav-link-overlay:hover { color: #2563eb !important; background: #eff6ff !important; }
.top-bar-solid {
    background: transparent !important;
    position: relative; z-index: 51;
}
.top-bar-solid .top-bar-link { color: #475569; }
.top-bar-solid .top-bar-link:hover { color: #2563eb; }
.top-bar-solid .top-bar-right { color: #64748b; }

.main-header-solid .mobile-menu-btn { color: #1e293b; }
.main-header-solid .mobile-menu-btn:hover { background: rgba(255,255,255,0.1); color: white; }
.main-header-solid .nav-actions .btn { border-color: rgba(255,255,255,0.3); }
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    height: 4rem;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 3.5rem; width: auto; transition: transform 0.3s; }
.logo-link:hover .logo-img { transform: scale(1.05); }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
    display: flex; align-items: center; gap: 0.25rem;
    padding: 0.5rem 1rem; font-size: 1rem; font-weight: 500;
    color: #475569; border-radius: 0.5rem; transition: all 0.2s;
}
.nav-link:hover { color: #2563eb; background: #eff6ff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { cursor: pointer; background: none; border: none; font-family: inherit; font-size: 1rem; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 14rem; background: white; border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
    overflow: hidden; padding: 0.5rem 0; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
    display: block; padding: 0.75rem 1rem;
    font-size: 1rem; color: #475569; transition: all 0.2s;
}
.nav-dropdown-item:hover { color: #2563eb; background: #eff6ff; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Mobile Menu */
.mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 0.5rem; background: none; border: none; cursor: pointer;
    color: #475569; border-radius: 0.5rem;
}
.mobile-menu-btn:hover { background: #f1f5f9; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-nav { border-top: 1px solid #e2e8f0; background: white; overflow-y: auto; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav-link {
    display: block; padding: 0.75rem 1rem;
    color: #475569; font-weight: 500; border-radius: 0.5rem; transition: all 0.2s;
}
.mobile-nav-link:hover { color: #2563eb; background: #eff6ff; }
.mobile-nav-link.pl { padding-left: 2rem; font-size: 0.875rem; color: #64748b; }
.mobile-nav-group { margin: 0.25rem 0; }
.mobile-nav-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0.75rem 1rem; font-weight: 500;
    background: none; border: none; cursor: pointer; font-family: inherit;
    color: #475569; border-radius: 0.5rem;
}
.mobile-nav-toggle:hover { color: #2563eb; background: #eff6ff; }
.mobile-nav-sub { display: none; background: #f8fafc; border-radius: 0.5rem; margin: 0 0.5rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative; min-height: 600px;
    display: flex; align-items: center; overflow: hidden;
    
}
@media (min-width: 768px) { .hero-section { min-height: 700px; } }

.hero-bg { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.8), rgba(15,23,42,0.5), rgba(15,23,42,0.3));
}
.hero-content {
    position: relative; z-index: 10; width: 100%;
    display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .hero-content { grid-template-columns: 1fr 1fr; } }

.hero-subtitle {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.9); color: #1e293b;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    padding: 0.5rem 1rem; border-radius: 9999px;
    font-size: 1rem; font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}
.hero-pulse { display: flex; width: 0.5rem; height: 0.5rem; background: #60a5fa; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero-title {
    font-size: 2rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 1.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 8px rgba(0,0,0,0.6), 0 6px 12px rgba(0,0,0,0.4);
}
@media (min-width: 640px) { .hero-title { font-size: 2.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-desc {
    font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 36rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 8px rgba(0,0,0,0.6), 0 6px 12px rgba(0,0,0,0.4);
    border-left: 4px solid #3b82f6; padding-left: 1rem; margin-bottom: 2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500; }
.hero-trust-item svg { color: #60a5fa; }

/* Hero Form */
.hero-form {
    background: white; border-radius: 0.75rem; padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: #0f172a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: #475569; margin-bottom: 0.25rem; }
.form-input {
    width: 100%; padding: 0.625rem 0.75rem; border: 1px solid #e2e8f0;
    border-radius: 0.5rem; font-size: 0.875rem; font-family: inherit;
    transition: border-color 0.2s; background: #f8fafc;
}
.form-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-textarea { min-height: 80px; resize: vertical; }

/* Hero Stats */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; }
.hero-stat {
    padding: 1rem; border-radius: 0.75rem;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2); text-align: center;
}
.hero-stat-value { font-size: 1.25rem; font-weight: 700; color: white; }
@media (min-width: 768px) { .hero-stat-value { font-size: 1.5rem; } }
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.7rem; margin-top: 0.25rem; font-weight: 500; }

/* Slide Dots */
.hero-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.75rem; z-index: 20;
}
.hero-dot {
    height: 0.5rem; border-radius: 9999px; transition: all 0.3s;
    background: rgba(255,255,255,0.3); border: none; cursor: pointer;
}
.hero-dot.active { width: 2.5rem; background: #3b82f6; }
.hero-dot:not(.active) { width: 1.5rem; }
.hero-dot:not(.active):hover { background: rgba(255,255,255,0.5); }

/* Bottom Info Bar */
.hero-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,0.8); backdrop-filter: blur(8px);
    color: white; padding: 0.75rem 0; font-size: 0.875rem;
}
.hero-bottom-bar .container { display: flex; justify-content: center; gap: 2rem; }
.hero-bottom-bar span { display: flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-white { background: white; }
.section-gray { background: #f8fafc; }
.section-gradient { background: linear-gradient(180deg, #ffffff, #f1f5f9); }

.section-header { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 1rem; border-radius: 9999px;
    background: #eff6ff; color: #1e40af; font-size: 1rem; font-weight: 500; margin-bottom: 1rem;
}
.section-title { font-size: 1.875rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { font-size: 1.125rem; color: #64748b; max-width: 36rem; margin: 0 auto; }

/* Divider */
.divider {
    width: 60px; height: 4px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 2px; margin: 1rem auto;
}

/* Cards */
.card {
    background: white; border: 1px solid #e2e8f0; border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #93c5fd; }

/* Link Arrow */
.link-arrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: #1e40af; font-weight: 500; transition: all 0.3s;
}
.link-arrow:hover { color: #3b82f6; gap: 0.75rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 0.5rem;
    padding: 1.5rem; display: flex; flex-direction: column;
    transition: box-shadow 0.3s;
}
.service-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.service-icon {
    display: flex; justify-content: center; margin-bottom: 1rem;
}
.service-icon-box {
    width: 3rem; height: 3rem; background: #facc15; border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center; color: white;
}
.service-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; text-align: center; }
.service-list { color: #64748b; font-size: 0.875rem; flex: 1; margin-bottom: 1rem; }
.service-list li { display: flex; align-items: flex-start; padding: 0.125rem 0; }
.service-list li::before { content: '-'; color: #94a3b8; margin-right: 0.5rem; }
.service-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 0.5rem 1rem; background: #1e3a8a; color: white;
    font-size: 1rem; font-weight: 500; border-radius: 0.375rem;
    transition: background 0.2s; margin-top: auto; width: 100%;
}
.service-btn:hover { background: #1e40af; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; }
.stat-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; color: white; transition: transform 0.3s;
}
.stat-card:hover .stat-icon { transform: scale(1.1); }
.stat-icon-blue { background: #3b82f6; }
.stat-icon-purple { background: #8b5cf6; }
.stat-icon-green { background: #22c55e; }
.stat-icon-amber { background: #f59e0b; }
.stat-value { font-size: 2.25rem; font-weight: 800; color: #1d4ed8; line-height: 1; }
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label { color: #64748b; margin-top: 0.5rem; font-weight: 500; }

/* Advantages */
.adv-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adv-grid { grid-template-columns: repeat(4, 1fr); } }
.adv-card {
    padding: 1.5rem; border-radius: 0.75rem;
    background: #f8fafc; border: 1px solid #e2e8f0;
    transition: all 0.3s;
}
.adv-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.adv-icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
    background: #dbeafe; display: flex; align-items: center; justify-content: center;
    color: #2563eb; margin-bottom: 1rem; transition: background 0.2s;
}
.adv-card:hover .adv-icon { background: #bfdbfe; }
.adv-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.adv-desc { color: #64748b; font-size: 0.875rem; line-height: 1.625; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.product-card:hover { border-color: #93c5fd; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-img-wrap {
    position: relative; height: 12rem; overflow: hidden; background: #f1f5f9;
}
.product-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-cat-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500;
    border-radius: 0.375rem; background: #2563eb; color: white;
}
.product-body { padding: 1.25rem; }
.product-name {
    font-size: 1.125rem; font-weight: 600; color: #0f172a;
    margin-bottom: 0.5rem; transition: color 0.2s;
}
.product-card:hover .product-name { color: #2563eb; }
.product-desc {
    color: #64748b; font-size: 0.875rem; margin-bottom: 1rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-cta {
    display: flex; align-items: center; gap: 0.25rem;
    color: #2563eb; font-size: 1rem; font-weight: 500;
}
.product-card:hover .product-cta svg { transform: translateX(4px); }
.product-cta svg { transition: transform 0.3s; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.video-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.video-thumb {
    position: relative; aspect-ratio: 16/9; background: #1e293b;
    display: flex; align-items: center; justify-content: center;
}
.video-thumb video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3); cursor: pointer;
}
.video-play-icon {
    width: 4rem; height: 4rem; background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.video-play-btn:hover .video-play-icon { transform: scale(1.1); }
.video-body { padding: 1.25rem; }
.video-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 5rem 0; text-align: center; color: white;
}
.cta-title { font-size: 1.875rem; font-weight: 800; color: white; margin-bottom: 1rem; }
@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }
.cta-desc { color: #bfdbfe; margin-bottom: 2rem; font-size: 1.125rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   CTA ORIGINAL SECTION (Two-column: Contact + Form)
   ============================================================ */
.cta-section-original {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 5rem 0; color: white;
}
.cta-original-grid {
    display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .cta-original-grid { grid-template-columns: 1fr 1fr; } }
.cta-original-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 1rem; border-radius: 9999px;
    background: rgba(255,255,255,0.1); color: #bfdbfe;
    font-size: 1rem; font-weight: 500; margin-bottom: 1rem;
}
.cta-original-title {
    font-size: 1.875rem; font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.2;
}
@media (min-width: 768px) { .cta-original-title { font-size: 2.25rem; } }
.cta-original-desc { color: #bfdbfe; margin-bottom: 2rem; font-size: 1.125rem; max-width: 32rem; }
.cta-original-info { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-original-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.cta-original-info-icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
    background: rgba(255,255,255,0.1); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s;
}
.cta-original-info-item:hover .cta-original-info-icon { background: rgba(255,255,255,0.2); }
.cta-original-info-label { color: #93c5fd; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.cta-original-info-value { color: white; font-weight: 600; font-size: 1rem; }
.cta-original-right { display: flex; justify-content: center; }
.cta-original-form-card {
    background: white; border-radius: 0.75rem; padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; max-width: 600px;
}
.cta-original-form-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.cta-original-form-subtitle { color: #64748b; font-size: 0.875rem; margin-bottom: 1.5rem; }
.cta-original-form { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-original-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cta-original-input {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid #e2e8f0;
    border-radius: 0.5rem; font-size: 0.875rem; font-family: inherit;
    transition: border-color 0.2s; background: #f8fafc; color: #0f172a;
}
.cta-original-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.cta-original-input-full { width: 100%; }
.cta-original-textarea { min-height: 100px; resize: vertical; }
.cta-original-field { display: flex; flex-direction: column; gap: 0.375rem; }
.cta-original-label { font-size: 0.8rem; font-weight: 500; color: #475569; }
.cta-original-file-wrap { display: flex; align-items: center; gap: 0.75rem; }
.cta-original-file-hidden { display: none; }
.cta-original-file-btn {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border: 1px solid #e2e8f0; border-radius: 0.5rem;
    background: white; color: #475569; cursor: pointer; font-family: inherit;
    font-size: 0.875rem; transition: background 0.2s;
}
.cta-original-file-btn:hover { background: #f8fafc; }
.cta-original-file-name { font-size: 0.8rem; color: #64748b; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cta-original-hint { font-size: 0.7rem; color: #94a3b8; }
.cta-original-captcha-wrap { display: flex; align-items: center; gap: 0.5rem; }
.cta-original-captcha-img { height: 42px; border: 1px solid #e2e8f0; border-radius: 0.375rem; cursor: pointer; }
.cta-original-captcha-refresh {
    padding: 0.375rem; background: none; border: none; cursor: pointer;
    color: #64748b; border-radius: 0.375rem; transition: color 0.2s;
}
.cta-original-captcha-refresh:hover { color: #2563eb; }
.cta-original-captcha-input { flex: 1; }
.cta-original-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.875rem; background: #2563eb; color: white;
    border: none; border-radius: 0.5rem; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s; font-family: inherit;
}
.cta-original-submit-btn:hover { background: #1d4ed8; }
.cta-original-form-footer { text-align: center; color: #94a3b8; font-size: 0.75rem; margin-top: 1rem; }

/* Hero Quote Toggle */
.hero-quote-toggle { margin-bottom: 0; }
.hero-quote-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 1rem 1.5rem; background: #2563eb; color: white;
    border: none; border-radius: 0.75rem; font-size: 1rem; font-weight: 600;
    cursor: pointer; box-shadow: 0 10px 30px rgba(37,99,235,0.3);
    transition: all 0.3s; font-family: inherit;
}
.hero-quote-btn:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(37,99,235,0.4); }
.hero-form-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.hero-form-close {
    background: none; border: none; font-size: 1.5rem; color: #94a3b8;
    cursor: pointer; padding: 0.25rem; line-height: 1; transition: color 0.2s;
}
.hero-form-close:hover { color: #0f172a; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
    position: relative; height: 400px; overflow: hidden;
    display: flex; align-items: center;
}
.page-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(30,64,175,0.9), rgba(30,64,175,0.8));
}
.page-hero-content { position: relative; z-index: 10; }
.page-hero-title { font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-hero-title { font-size: 3.75rem; } }
.page-hero-subtitle { font-size: 1.25rem; color: #bfdbfe; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 2rem;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
    width: 2.5rem; height: 2.5rem; background: #eff6ff; border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center; color: #2563eb; flex-shrink: 0;
}
.contact-form-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 2rem;
}
.contact-map { margin-top: 3rem; border-radius: 0.75rem; overflow: hidden; border: 1px solid #e2e8f0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-img {
    border-radius: 0.75rem; width: 100%; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(4, 1fr); } }
.about-value-card {
    text-align: center; padding: 1.5rem; background: white; border-radius: 0.75rem;
    border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.about-value-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #93c5fd; }
.about-value-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem;
}
.about-value-icon.blue { background: #dbeafe; color: #2563eb; }
.about-value-icon.purple { background: #ede9fe; color: #7c3aed; }
.about-value-icon.green { background: #dcfce7; color: #16a34a; }
.about-value-icon.orange { background: #ffedd5; color: #ea580c; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.blog-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #93c5fd; }
.blog-card-img {
    width: 100%; height: 12rem; object-fit: cover; background: #f1f5f9;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.blog-card-title:hover { color: #2563eb; }
.blog-card-summary { color: #64748b; font-size: 0.875rem; margin-bottom: 1rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
    background: white; border: 1px solid #e2e8f0; border-radius: 0.5rem;
    margin-bottom: 0.75rem; overflow: hidden;
}
.faq-question {
    width: 100%; padding: 1.25rem; display: flex; justify-content: space-between;
    align-items: center; background: none; border: none; cursor: pointer;
    font-weight: 600; font-size: 1rem; text-align: left; font-family: inherit;
    color: #0f172a;
}
.faq-question:hover { color: #2563eb; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: #64748b; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-icon { transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* ============================================================
   VIDEOS PAGE
   ============================================================ */
.videos-page-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .videos-page-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FACTORY PAGE
   ============================================================ */
.factory-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .factory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .factory-grid { grid-template-columns: repeat(3, 1fr); } }
.factory-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .factory-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .factory-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.factory-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.factory-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.factory-card-img { width: 100%; height: 16rem; object-fit: cover; transition: transform 0.5s; }
.factory-card:hover .factory-card-img { transform: scale(1.05); }
.factory-card-body { padding: 1.25rem; }

/* Factory card link (matching original design) */
.factory-card-link {
    display: block; background: white; border-radius: 1rem; overflow: hidden;
    border: 1px solid #e2e8f0; text-decoration: none; color: inherit;
    transition: all 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.factory-card-link:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #93c5fd; transform: translateY(-3px);
}
.factory-card-img-wrap {
    position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f1f5f9;
}
.factory-card-link .factory-card-img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.factory-card-link:hover .factory-card-img { transform: scale(1.1); }
.factory-card-num {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem; background: #2563eb; color: white;
    font-size: 0.75rem; font-weight: 600; border-radius: 9999px;
}
.factory-card-link .factory-card-body { padding: 1.25rem; }
.factory-card-link .factory-card-body h3 {
    font-size: 1.05rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.factory-card-link:hover .factory-card-body h3 { color: #2563eb; }
.factory-card-link .factory-card-body p {
    color: #64748b; font-size: 0.875rem; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.factory-card-arrow {
    display: inline-flex; align-items: center; gap: 0.25rem;
    margin-top: 0.75rem; color: #2563eb; font-size: 1rem; font-weight: 500;
}
.factory-card-link:hover .factory-card-arrow svg { transform: translateX(4px); }
.factory-card-arrow svg { transition: transform 0.3s; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr 1fr; } }
.product-gallery-img {
    width: 100%; border-radius: 0.75rem; border: 1px solid #e2e8f0;
    object-fit: cover; aspect-ratio: 4/3;
}
.product-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 1rem; overflow-x: auto; }
.product-gallery-thumb {
    width: 5rem; height: 5rem; object-fit: cover; border-radius: 0.5rem;
    border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s;
}
.product-gallery-thumb:hover, .product-gallery-thumb.active { border-color: #3b82f6; }
.product-specs-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.product-specs-table th, .product-specs-table td {
    padding: 0.75rem; text-align: left; border-bottom: 1px solid #e2e8f0; font-size: 0.875rem;
}
.product-specs-table th { background: #f8fafc; font-weight: 600; color: #475569; width: 40%; }
.product-specs-table td { color: #334155; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: #64748b; }
.breadcrumb a { color: #2563eb; }
.breadcrumb a:hover { color: #1d4ed8; }
.breadcrumb span { margin: 0 0.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1e293b; color: white; padding-top: 4rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-logo-img { height: 3rem; width: auto; margin-bottom: 1.5rem; transition: transform 0.3s; }
.footer-logo:hover .footer-logo-img { transform: scale(1.05); }
.footer-desc { color: #cbd5e1; margin-bottom: 1.5rem; max-width: 24rem; line-height: 1.625; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-contact-item {
    display: flex; align-items: center; gap: 0.75rem; color: #cbd5e1; font-size: 0.875rem;
    transition: color 0.2s;
}
a.footer-contact-item:hover { color: #60a5fa; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: #334155;
    display: flex; align-items: center; justify-content: center;
    color: #cbd5e1; transition: all 0.3s;
}
.social-icon:hover { color: white; background: #2563eb; }
.footer-heading {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: #60a5fa; margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #cbd5e1; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-certs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #334155;
}
.cert-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; background: rgba(51,65,85,0.5); border-radius: 0.5rem; }
.cert-badge {
    width: 2rem; height: 2rem; border-radius: 0.375rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; border: 1px solid currentColor;
}
.cert-title { font-weight: 600; font-size: 0.875rem; }
.cert-sub { font-size: 0.7rem; color: #94a3b8; }

.footer-bottom {
    border-top: 1px solid #334155; background: #0f172a;
    margin-top: 2rem; padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    font-size: 0.875rem; color: #94a3b8;
}
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #94a3b8; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ============================================================
   SIMPLE PAGES (Privacy, Terms)
   ============================================================ */
.simple-content { max-width: 48rem; margin: 0 auto; }
.prose { line-height: 1.75; color: #334155; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }

/* ============================================================
   NOT FOUND
   ============================================================ */
.not-found { text-align: center; padding: 5rem 0; }
.not-found h1 { font-size: 6rem; font-weight: 800; color: #2563eb; }
.not-found p { font-size: 1.25rem; color: #64748b; margin: 1rem 0 2rem; }

/* ============================================================
   PRODUCT LIST
   ============================================================ */
.categories-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.cat-filter-btn {
    padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 1rem; font-weight: 500;
    border: 1px solid #e2e8f0; background: white; color: #475569; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.cat-filter-btn:hover, .cat-filter-btn.active { background: #eff6ff; color: #2563eb; border-color: #93c5fd; }

/* ============================================================
   SUCCESS/ALERT MESSAGES
   ============================================================ */
.alert { padding: 1rem; border-radius: 0.5rem; margin-bottom: 1rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
    font-size: 1rem; font-weight: 500; border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.pagination a { background: white; color: #475569; }
.pagination a:hover { background: #eff6ff; color: #2563eb; border-color: #93c5fd; }
.pagination .active { background: #2563eb; color: white; border-color: #2563eb; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }
.case-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.case-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #93c5fd; }
.case-card-img { width: 100%; height: 12rem; object-fit: cover; }
.case-card-body { padding: 1.25rem; }

/* ============================================================
   UI DESIGN PAGE
   ============================================================ */
.ui-design-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ui-design-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ui-design-grid { grid-template-columns: repeat(3, 1fr); } }
.ui-design-card {
    background: white; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.ui-design-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.ui-design-card-img { width: 100%; height: 16rem; object-fit: cover; transition: transform 0.5s; }
.ui-design-card:hover .ui-design-card-img { transform: scale(1.05); }
.ui-design-card-body { padding: 1.25rem; }

.hero-overlay{display:none !important}

.hero-quote-toggle,.hero-quote-btn,.hero-form,.hero-form-header,.hero-form-close,.hero-stats,.hero-stat{display:none !important}

.hero-nav-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:30;background:rgba(255,255,255,0.8);backdrop-filter:blur(4px);border:none;border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 15px rgba(0,0,0,0.2);color:#1e293b}
.hero-nav-btn:hover{background:white}
.hero-nav-btn svg{width:24px;height:24px}
.hero-prev{left:1rem}
.hero-next{right:1rem}
@media(max-width:640px){.hero-nav-btn{width:40px;height:40px}.hero-nav-btn svg{width:20px;height:20px}}
.hero-dots{position:absolute;bottom:5rem;left:50%;transform:translateX(-50%);z-index:20;display:flex;gap:0.5rem}
.hero-dot{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,0.5);border:none;cursor:pointer;padding:0}
.hero-dot.active{background:white;transform:scale(1.25)}

.top-bar-solid { background: #1e293b !important; border-color: rgba(255,255,255,0.05) !important; }
.top-bar-solid .top-bar-link { color: #cbd5e1 !important; }
.top-bar-solid .top-bar-link:hover { color: #60a5fa !important; }
.top-bar-solid .top-bar-right { color: #94a3b8 !important; }

.main-header-solid { background: white !important; box-shadow: none !important; }
.main-header-solid .mobile-menu-btn { color: #1e293b !important; }

.hero-section .container { max-width: 100%; padding-left: 2rem; padding-right: 2rem; margin: 0; }
@media (min-width: 768px) { .hero-section .container { padding-left: 4rem; padding-right: 4rem; } }
@media (min-width: 1024px) { .hero-section .container { padding-left: 6rem; padding-right: 6rem; } }

.case-content p{margin-bottom:0.75rem}.case-content span{color:#334155!important;font-family:inherit!important;font-size:inherit!important}

.breadcrumb{display:none !important}

.kddmin .table th, .table-container .table th { color: #e2e8f0 !important; font-weight:600; }
.kddmin .table td { color: #f1f5f9 !important; }
.kddmin h1, .page-header h1 { color: #f8fafc !important; }
