:root {
    --primary: #1a56db;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1280px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Top Bar */
.top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
    background: var(--primary); color: #fff; height: 40px;
    font-size: 0.82rem; font-weight: 500;
}
.top-bar-inner {
    max-width: var(--max-width); margin: 0 auto;
    padding: 0 24px; height: 100%;
    display: flex; align-items: center; justify-content: flex-end;
    gap: 24px;
}
.top-bar a {
    color: #fff; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.8; }
.top-bar-icon {
    width: 16px; height: 16px; flex-shrink: 0;
}

/* Header */
.header {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    max-width: var(--max-width); margin: 0 auto;
    padding: 0 24px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    font-size: 1.5rem; font-weight: 800; color: var(--primary);
    text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    font-size: 0.9rem; font-weight: 500; color: var(--text);
    text-decoration: none; transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav-cta {
    background: var(--primary) !important; color: #fff !important;
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* Page Header */
.page-header {
    padding: 180px 24px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 50%, #fefce8 100%);
}
.page-header h1 {
    font-size: 3rem; font-weight: 800; letter-spacing: -1.5px;
    line-height: 1.15; color: var(--text); margin-bottom: 16px;
}
.page-header h1 span { color: var(--primary); }
.page-header p {
    font-size: 1.1rem; color: var(--text-light);
    max-width: 680px; margin: 0 auto; line-height: 1.7;
}

/* Sections */
.section {
    padding: 80px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-alt { background: var(--bg-alt); }
.section-alt > .section { padding-top: 80px; padding-bottom: 80px; }

.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary); margin-bottom: 12px;
}
.section-title {
    font-size: 2.3rem; font-weight: 800; letter-spacing: -1px;
    line-height: 1.15; margin-bottom: 16px; color: var(--text);
}
.section-subtitle {
    font-size: 1.05rem; color: var(--text-light);
    max-width: 640px; margin-bottom: 40px;
}
.subtitle-wide { max-width: 800px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border: 2px solid var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* Hero Stats */
.hero-stats {
    display: flex; justify-content: center; gap: 60px;
    margin-top: 64px; padding-top: 48px;
    border-top: 1px solid var(--border);
}
.hero-stat h3 {
    font-size: 2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px;
}
.hero-stat p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

/* Service Cards */
.service-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px 32px;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.service-card::before {
    content:''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--primary);
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; background: var(--primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.service-card .card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 0.9rem; font-weight: 600;
    color: var(--primary); text-decoration: none; transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 12px; }

/* 2-col layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Equipment / Product Grid */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.equip-cat {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: all 0.3s;
}
.equip-cat:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.equip-cat h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.equip-cat > a {
    display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary);
    text-decoration: none; padding-bottom: 12px; margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.equip-list { list-style: none; }
.equip-list li { margin-bottom: 6px; }
.equip-list a { font-size: 0.85rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.equip-list a:hover { color: var(--primary); }

/* Equipment detail cards */
.equip-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    transition: all 0.3s;
}
.equip-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.equip-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.equip-card h5 a { color: var(--primary); text-decoration: none; }
.equip-card .specs { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; }
.equip-card .specs span { display: block; margin-bottom: 2px; }

/* Solutions grid */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text);
    font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
}
.sol-item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }
.sol-item .arrow { margin-left: auto; opacity: 0; transform: translateX(-8px); transition: all 0.2s; }
.sol-item:hover .arrow { opacity: 1; transform: translateX(0); }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    text-align: center; padding: 32px 24px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: var(--primary-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* Process */
.process-row {
    display: flex; justify-content: space-between;
    position: relative; padding: 20px 0;
}
.process-row::before {
    content:''; position: absolute; top: 48px; left: 12%; right: 12%;
    height: 2px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.process-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 2px solid var(--primary);
    color: var(--primary); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; font-weight: 800;
    margin: 0 auto 16px; transition: all 0.3s;
}
.process-step:hover .process-num { background: var(--primary); color: #fff; }
.process-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.process-step p { font-size: 0.8rem; color: var(--text-light); }

/* Case Grid */
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.case-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.case-img {
    height: 200px; background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary);
}
.case-body { padding: 20px; }
.case-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.case-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-light); }
.case-meta span { font-weight: 600; color: var(--text); }
.case-card .learn-more {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 12px; font-size: 0.85rem; font-weight: 600;
    color: var(--primary); text-decoration: none;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius); padding: 60px 48px;
    text-align: center; color: #fff;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    background: #fff; color: var(--primary); transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* Content section */
.content-block { margin-bottom: 48px; }
.content-block h2 {
    font-size: 1.6rem; font-weight: 700; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--primary-light);
}
.content-block h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; margin-top: 32px; color: var(--primary); }
.content-block p { color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-size: 0.95rem; }
.content-block ul { margin-bottom: 16px; padding-left: 20px; }
.content-block ul li { color: var(--text-light); margin-bottom: 8px; font-size: 0.95rem; }
.content-block ul li strong { color: var(--text); }

/* Highlight box */
.highlight-box {
    background: var(--primary-light); border-left: 4px solid var(--primary);
    padding: 24px 28px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 24px;
}
.highlight-box h3 { margin-top: 0; font-size: 1.15rem; }
.highlight-box p, .highlight-box li { font-size: 0.9rem; }

/* Comparison table */
.info-table {
    width: 100%; border-collapse: collapse; margin: 24px 0 32px;
    font-size: 0.9rem; border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.info-table th {
    background: var(--primary); color: #fff;
    padding: 12px 16px; text-align: left; font-weight: 600;
}
.info-table td {
    padding: 12px 16px; border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
}
.info-table tr:nth-child(even) { background: var(--bg-alt); }
.info-table tr:hover td { background: var(--primary-light); }

/* FAQ */
.faq-item { margin-bottom: 24px; }
.faq-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Case table */
.case-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.case-table th { background: var(--primary); color: #fff; padding: 10px 12px; text-align: left; font-weight: 600; font-size: 0.8rem; }
.case-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.case-table tr:nth-child(even) { background: var(--bg-alt); }
.case-table tr:hover td { background: var(--primary-light); }

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem; color: var(--text-lighter); margin-bottom: 24px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* Spec tags */
.spec-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.spec-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: var(--primary-light);
    color: var(--primary); border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-dark); color: #9ca3af;
    padding: 64px 24px 32px;
}
.footer-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #9ca3af; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
    max-width: var(--max-width); margin: 40px auto 0;
    padding-top: 24px; border-top: 1px solid #374151;
    font-size: 0.8rem; text-align: center;
}

/* Back to top */
.back-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(20px); transition: all 0.3s;
    pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }


/* Ensure CTA banner text is always white — higher specificity to beat .product-section p inline overrides */
.product-section .cta-banner,
.product-section .cta-banner h2,
.product-section .cta-banner h3,
.product-section .cta-banner p,
.product-section .cta-banner a:not(.btn-white) {
    color: #fff;
}
.product-section .cta-banner p { opacity: 0.9; }

/* Responsive */
@media (max-width: 1024px) {
    .equip-grid, .grid-4, .case-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid, .grid-3 { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .process-row { flex-wrap: wrap; gap: 24px; }
    .process-row::before { display: none; }
    .process-step { flex: 0 0 calc(33.33% - 16px); }
}
@media (max-width: 768px) {
    .page-header h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .nav { display: none; }
    .menu-btn { display: block; }
    .equip-grid, .grid-2, .grid-3, .grid-4, .case-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .sol-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .process-step { flex: 0 0 calc(50% - 12px); }
    .section { padding: 64px 16px; }
    .float-cta { top: auto; bottom: 20px; transform: none; }
    .float-cta-btn { height: 44px; }
    .float-cta-btn .f-icon { width: 44px; height: 44px; }
    .float-cta-btn .f-icon svg { width: 20px; height: 20px; }
    .float-cta-btn .f-text { font-size: 0.78rem; }
    .float-cta-btn:hover .f-text { padding: 0 10px 0 2px; }
    .top-bar { font-size: 0.75rem; }
    .top-bar-inner { padding: 0 12px; gap: 16px; }
}
@media (max-width: 480px) {
    .sol-grid { grid-template-columns: 1fr; }
    .process-step { flex: 0 0 100%; }
}

/* Equipment page specific - 3 col card layout */
.equip-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .equip-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .equip-card-grid { grid-template-columns: 1fr; } }

/* =============================================
   Page Sidebar Navigation (PC only, 1024px+)
   ============================================= */
.page-sidebar {
    position: fixed; left: 28px; top: 50%; transform: translateY(-50%);
    z-index: 998;
    display: flex; flex-direction: column;
}
/* Vertical line behind dots */
.page-sidebar::before {
    content: ''; position: absolute;
    left: 3px; top: 8px; bottom: 8px;
    width: 1px; background: #e5e7eb;
}
.page-sidebar a {
    position: relative; display: flex; align-items: center;
    text-decoration: none; padding: 7px 0;
}
/* Dot circle */
.page-sidebar a::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #fff; border: 1.5px solid #cbd5e1;
    transition: all 0.3s; flex-shrink: 0; z-index: 1;
}
/* Label text */
.page-sidebar a small {
    display: block; font-size: 0.7rem; font-weight: 500;
    color: #6b7280; white-space: nowrap;
    max-width: 0; overflow: hidden; opacity: 0;
    margin-left: 0;
    transform: translateX(-4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
/* Hover: show label + highlight dot */
.page-sidebar a:hover::before {
    background: var(--primary-light); border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.page-sidebar a:hover small {
    max-width: 120px; opacity: 1; margin-left: 12px;
    transform: translateX(0);
}
/* Active: fill dot, bold label */
.page-sidebar a.active::before {
    background: var(--primary); border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,86,219,0.18);
}
.page-sidebar a.active small {
    color: var(--primary); font-weight: 600;
    max-width: 120px; opacity: 1; margin-left: 12px;
    transform: translateX(0);
}
@media (max-width: 1200px) {
    .page-sidebar { left: 12px; }
    .page-sidebar a small { font-size: 0.65rem; }
    .page-sidebar a:hover small,
    .page-sidebar a.active small { max-width: 96px; }
}
@media (max-width: 1024px) {
    .page-sidebar { display: none; }
}

/* =============================================
   Floating CTA Buttons (Right Side)
   Each button slides out independently on hover
   ============================================= */
.float-cta {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    z-index: 998;
    display: flex; flex-direction: column; gap: 4px;
    align-items: flex-end;
}
.float-cta-btn {
    display: flex; align-items: center; gap: 0;
    height: 48px; text-decoration: none;
    background: #fff; box-shadow: -2px 0 8px rgba(0,0,0,0.10);
    border-radius: 8px 0 0 8px; overflow: hidden;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-cta-btn:hover {
    box-shadow: -4px 0 20px rgba(0,0,0,0.16);
}
.float-cta-btn .f-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px 0 0 8px;
}
.float-cta-btn .f-icon svg {
    width: 22px; height: 22px;
}
.float-cta-btn .f-text {
    white-space: nowrap; font-size: 0.85rem; font-weight: 600;
    max-width: 0; overflow: hidden;
    padding: 0;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-cta-btn:hover .f-text {
    max-width: 240px;
    padding: 0 14px 0 4px;
}
.float-wa { color: #25D366; }
.float-wa .f-icon { background: #25D366; border-radius: 8px 0 0 8px; }
.float-wa .f-icon svg { fill: #fff; }
.float-email { color: var(--primary); }
.float-email .f-icon { background: var(--primary); border-radius: 8px 0 0 8px; }
.float-email .f-icon svg { fill: #fff; }