* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0052CC;
    --primary-dim: #003d99;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --border-color: #e2e8f0;
    --border-glow: #0052CC15;
    --text-primary: #1a2332;
    --text-secondary: #4a5568;
    --text-dim: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #0052CC, #0072ff);
    --gradient-glow: radial-gradient(ellipse at center, #0052CC08 0%, transparent 70%);
}

body {
    font-family: 'Inter', 'Noto Sans Thai', sans-serif;
    background-color: #f5f7fa;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 1000;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 24px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #ffffff;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 14px;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: url('../images/hero.webp') center center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(245, 247, 250, 0.65) 100%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, #0052CC08 0%, transparent 60%);
    pointer-events: none;
}

.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid #0052CC10;
    animation: pulse-ring 4s ease-in-out infinite;
}

.hero-glow-ring:nth-child(2) {
    width: 700px;
    height: 700px;
    animation-delay: 1s;
}

.hero-glow-ring:nth-child(3) {
    width: 900px;
    height: 900px;
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #0052CC10;
    border: 1px solid #0052CC25;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}

.hero-badge i {
    font-size: 10px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: #0052CC08;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== TRUSTED SECTION ===== */
.trusted {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted p {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 40px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trusted-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
}

/* Alternating section backgrounds for visual rhythm */
#features {
    background: #ffffff;
}

#solutions {
    background: #f0f4f8;
}

.cooperation {
    background: #ffffff;
}

#featured-products {
    background: #f0f4f8;
}

#industries {
    background: #ffffff;
}

#our-partners {
    background: #f0f4f8;
}

#testimonials {
    background: #ffffff;
}

#faq {
    background: #f0f4f8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== FEATURE CARDS (Why Choose WCS) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== HOW IT WORKS (Solutions) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 24px;
    box-shadow: 0 0 30px #0052CC20;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PRODUCTS (Pricing-style cards) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.product-action {
    margin-top: auto;
    padding: 0 24px 24px;
}

.product-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(0, 82, 204, 0.12);
}

.product-card.featured .product-header {
    background: linear-gradient(135deg, #0052CC15, #0072ff15);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.product-header {
    padding: 32px 28px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.product-series {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-desc-short {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-features-list {
    padding: 28px;
    list-style: none;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid #f0f0f050;
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-features-list li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.product-action {
    padding: 0 28px 28px;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.product-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 20px #0052CC20;
}

.product-btn-primary:hover {
    box-shadow: 0 0 40px #0052CC40;
}

.product-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.product-btn-outline:hover {
    border-color: var(--primary);
    background: #0052CC08;
}

/* ===== APPLICATIONS (Stats/Circle section) ===== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.app-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.app-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #0052CC20;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    background: #0052CC08;
}

.app-icon-wrap i {
    font-size: 28px;
    color: var(--primary);
}

.app-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.app-card p {
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== COOPERATION (Trust section) ===== */
.cooperation {
    background: #ffffff;
}

.coop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.coop-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.coop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.coop-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 26px;
    color: var(--primary);
}

.coop-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.coop-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0052CC, #0072ff);
}

.cta-box {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, #0052CC08 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
    color: #ffffff;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
}

.cta-box .highlight {
    -webkit-text-fill-color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #0052CC;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    border-top: none;
    padding: 60px 0 30px;
    background: #1a2332;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer .logo-text {
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    border-color: #0052CC;
    color: #ffffff;
    background: rgba(0, 82, 204, 0.3);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .section-title { font-size: 36px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        width: calc(100% - 32px);
        padding: 8px 16px;
        top: 10px;
        border-radius: 16px;
    }
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        gap: 20px;
        border: 1px solid var(--border-color);
        border-radius: 16px;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 14px 20px;
        border-radius: 12px;
        transition: background 0.2s;
        font-size: 15px;
        text-align: center;
    }
    .nav-links a:hover {
        background: rgba(0, 82, 204, 0.05);
    }
    .nav-links .btn-primary {
        text-align: center;
        justify-content: center;
        margin-top: 8px;
    }

    /* Hero */
    .hero { padding: 130px 0 60px; }
    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }
    .hero p {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 24px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--border-color);
        backdrop-filter: blur(10px);
    }
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-stat-number { font-size: 28px; }
    .hero-stat-label { font-size: 11px; }

    /* Sections */
    .section { padding: 60px 0; }
    .section-title { font-size: 24px; }
    .section-desc { font-size: 14px; }
    .section-badge { font-size: 11px; }

    /* Grids */
    .features-grid,
    .products-grid,
    .coop-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }

    /* App-style footer */
    .footer { padding: 48px 0 24px; }
    .footer-grid {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand {
        text-align: center;
    }
    .footer-brand .logo {
        justify-content: center;
    }
    .footer-brand p {
        font-size: 13px;
    }
    .footer-social {
        justify-content: center;
        gap: 16px;
    }
    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 18px;
    }

    .footer-col {
        text-align: center;
    }
    .footer-col h4 {
        margin-bottom: 16px;
    }
    .footer-col ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .footer-col ul li {
        margin-bottom: 0;
    }
    .footer-col ul li a {
        display: block;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        font-size: 13px;
        transition: background 0.2s, border-color 0.2s;
    }
    .footer-col ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Contact column: full-width CTA buttons */
    .footer-col:last-child ul {
        grid-template-columns: 1fr;
    }
    .footer-col:last-child ul li a {
        padding: 14px;
        background: rgba(0, 82, 204, 0.2);
        border-color: rgba(0, 82, 204, 0.3);
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 11px;
    }

    /* CTA */
    .cta-box h2 { font-size: 24px; }
    .cta-box { padding: 40px 20px; }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        justify-content: center;
        font-size: 14px;
    }

    /* Logo */
    .logo-icon {
        height: 32px;
    }
    .logo { margin-right: 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE HEADER (Sub pages) ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, #0052CC08 0%, transparent 60%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.page-header-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== REVIEW STATS ===== */
.review-stats-section {
    padding-top: 40px;
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.review-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.review-stat-icon {
    width: 56px;
    height: 56px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--primary);
}

.review-stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.review-stat-label {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== REVIEW CARDS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
}

.review-company {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

.review-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #0052CC08;
    border: 1px solid #0052CC15;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== CONTACT INFO ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-info-card p a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-card p a:hover {
    opacity: 0.8;
}

.contact-info-note {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #0052CC15;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    font-family: inherit;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ===== RESPONSIVE (new pages) ===== */
@media (max-width: 1024px) {
    .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .page-header-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .page-header { padding: 130px 0 60px; }
    .page-header-title { font-size: 32px; letter-spacing: -1px; }
    .page-header-desc { font-size: 16px; }
    .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper,
    .contact-map-wrapper { padding: 24px; }
}

/* ===== PRODUCT CARD IMAGES ===== */
.product-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
    border-bottom: 1px solid var(--border-color);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-card {
    cursor: pointer;
}

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-y: auto;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.product-modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 100vh;
}

/* Gallery */
.product-modal-gallery {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    justify-content: center;
}

.modal-main-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
    overflow: hidden;
}

.modal-main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 20px;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    border-color: var(--primary);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Info */
.product-modal-info {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.product-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.product-modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.product-modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-modal-standard {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-modal-standard span {
    padding: 4px 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
}

.product-modal-features-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-modal-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
    max-height: none;
    overflow-y: visible;
}

.product-modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-modal-features li i {
    color: var(--primary);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.product-modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-modal-actions .btn-primary,
.product-modal-actions .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
}

/* ===== MODAL RESPONSIVE ===== */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .product-modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        position: relative;
        height: auto;
        min-height: auto;
    }
    .modal-main-image img {
        height: 220px;
    }
    .product-modal-info {
        padding: 24px 20px;
    }
    .product-modal-title {
        font-size: 22px;
    }
    .product-modal-actions {
        flex-direction: column;
    }
    .product-modal {
        height: 100vh;
    }
    .product-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
}

/* ===== INDUSTRIES SECTION ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.industry-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.industry-card:hover .industry-img img {
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 15px;
    font-weight: 700;
    padding: 16px 12px;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .industry-card h3 {
        font-size: 13px;
        padding: 12px 8px;
    }
}

/* ===== INDUSTRY MODAL ===== */
.industry-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.industry-modal-overlay.active {
    display: flex;
}

.industry-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.industry-modal-body {
    display: flex;
    flex-direction: column;
}

.industry-modal-img-wrap {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    max-height: 200px;
}

.industry-modal-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-modal-info {
    padding: 32px;
}

.industry-modal-info h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.industry-modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-modal-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-modal-solutions {
    list-style: none;
    margin-bottom: 20px;
}

.industry-modal-solutions li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.industry-modal-solutions li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 12px;
}

.industry-modal-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ind-product-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .industry-modal-img-wrap,
    .industry-modal-img-wrap img {
        max-height: 160px;
        height: 160px;
    }
    .industry-modal-info {
        padding: 24px;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto 24px;
    background: rgba(15, 20, 35, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-text i {
    color: #ffa500;
    font-size: 22px;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #000;
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    .cookie-text {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ===== BUSINESS PARTNERSHIP ===== */
.partners-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partners-track-reverse {
    animation: marqueeScrollReverse 30s linear infinite;
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}

.partner-logo:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.partner-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-track {
        gap: 16px;
    }
    .partner-logo {
        padding: 12px 20px;
    }
    .partner-logo img {
        height: 32px;
    }
}

/* ===== BRANDS WE USE ===== */
.brands-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.brands-track-left {
    animation: brandsScrollLeft 40s linear infinite;
}

.brands-track-right {
    animation: brandsScrollRight 40s linear infinite;
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

@keyframes brandsScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes brandsScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.brand-logo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.brand-logo:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.brand-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-track {
        gap: 12px;
    }
    .brand-logo {
        padding: 10px 16px;
    }
    .brand-logo img {
        height: 28px;
    }
}


/* ===== FAQ SECTION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-question i {
    color: var(--text-dim);
    font-size: 14px;
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
    }
    .faq-question h3 {
        font-size: 14px;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
}

/* ===== PRIVACY POLICY CONTENT ===== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
}

.privacy-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.privacy-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 16px;
}

.privacy-content ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.privacy-content ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 24px;
    }
}
