/* ── Reset & Variables ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #07090f;
  --bg2:         #0d1117;
  --bg3:         #111827;
  --glass:       rgba(255,255,255,0.03);
  --glass-b:     rgba(255,255,255,0.06);
  --border:      rgba(255,255,255,0.06);
  --border-h:    rgba(0,212,255,0.3);
  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0,212,255,0.1);
  --blue:        #3b82f6;
  --text:        #e2e8f0;
  --text-muted:  #4b5563;
  --text-dim:    #8892a4;
  --card-r:      20px;
  --transition:  0.2s cubic-bezier(0.4,0,0.2,1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.2); border-radius: 2px; }

h1,h2,h3,h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* ── Subtle grid bg ────────────────────────────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  background: rgba(7,9,15,0.7);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 800; letter-spacing: -0.04em;
}

.nav-logo .logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #07090f;
}

.nav-logo span { color: var(--cyan); }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-contact { display: flex; flex-direction: column; gap: 2px; }
.nav-phone { 
  font-size: 1.3rem !important; 
  font-weight: 800 !important; 
  color: var(--cyan);
}
.nav-phone:hover { opacity: 0.8; }
.nav-address { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.4); font-size: 0.72rem; }
@media (max-width: 900px) { .nav-address { display: none; } }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-dim);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active { color: var(--cyan); }

.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 14px;
  transition: border-color var(--transition);
  cursor: pointer;
}
.nav-search:focus-within,
.nav-search:hover { border-color: rgba(255,255,255,0.12); }

.nav-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 0.85rem; width: 180px; cursor: pointer;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search svg { color: var(--text-muted); flex-shrink: 0; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 2rem 0;
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: 20%; left: 10%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}
.hero-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  bottom: 30%; right: 8%;
  animation: orbFloat 9s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%,100% { transform: translateY(0) translateX(-50%); }
  50%      { transform: translateY(-30px) translateX(-50%); }
}
.hero-orb--2 { animation: orbFloat2 11s ease-in-out infinite reverse; }
.hero-orb--3 { animation: orbFloat2 9s ease-in-out infinite 2s; }
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 100px;
  padding: 5px 16px 5px 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--cyan);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.hero-badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,255,0.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(0,212,255,0); } }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,0.7) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan);
  color: #07090f;
  font-size: 0.9rem; font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all var(--transition);
  margin-bottom: 4rem;
}
.hero-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.25);
}
.hero-cta svg { transition: transform var(--transition); }
.hero-cta:hover svg { transform: translateX(3px); }

/* Stats strip */
.hero-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
}

.stat { text-align: center; padding: 0 1.75rem; }
.stat-number {
  font-size: 1.75rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Main layout ───────────────────────────────────────────────────────────── */
.main-content {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto;
  padding: 5rem 2.5rem 6rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.sidebar {
  position: sticky; top: 76px;
  display: flex; flex-direction: column; gap: 1.5rem;
}

.sidebar-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.category-list { display: flex; flex-direction: column; gap: 2px; }

.category-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.875rem; color: var(--text-dim);
  background: none; border: none;
  transition: all var(--transition);
  width: 100%; text-align: left;
}
.category-btn:hover { background: var(--glass-b); color: var(--text); }
.category-btn.active { background: var(--cyan-dim); color: var(--cyan); }
.category-btn .count {
  font-size: 0.7rem; color: var(--text-muted);
  font-weight: 600;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }

.tag-chip {
  padding: 4px 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem; color: var(--text-dim); cursor: pointer;
  transition: all var(--transition);
}
.tag-chip:hover { border-color: rgba(255,255,255,0.15); color: var(--text); }
.tag-chip.active { background: var(--cyan-dim); border-color: rgba(0,212,255,0.25); color: var(--cyan); }

/* ── Articles section ──────────────────────────────────────────────────────── */
.articles-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.articles-count { font-size: 0.85rem; color: var(--text-muted); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ── Article Card ──────────────────────────────────────────────────────────── */
.article-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.article-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.card-image {
  position: relative; overflow: hidden;
  height: 200px;
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.article-card:hover .card-image img { transform: scale(1.04); filter: brightness(0.95); }

.card-category {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,9,15,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 0.68rem; font-weight: 700;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em;
}

.card-body {
  padding: 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}

.card-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem;
  color: var(--text); line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-summary {
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.card-tag {
  padding: 2px 9px;
  background: var(--glass-b); border-radius: 100px;
  font-size: 0.68rem; color: var(--text-muted);
}

.card-meta {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.72rem; color: var(--text-muted); white-space: nowrap;
}
.card-meta svg { width: 12px; height: 12px; }

/* ── Loading skeleton ──────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--glass) 25%, var(--glass-b) 50%, var(--glass) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.skeleton-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--card-r); overflow: hidden;
}
.skeleton-img { height: 200px; }
.skeleton-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line { height: 13px; }
.skeleton-line.short { width: 55%; }
.skeleton-line.medium { width: 78%; }

/* ── Empty state ───────────────────────────────────────────────────────────── */
.empty-state {
  grid-column: 1/-1;
  text-align: center; padding: 5rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { width: 44px; height: 44px; margin-bottom: 1.25rem; opacity: 0.25; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dim); }
.empty-state p { font-size: 0.85rem; }

/* ── Article detail page ───────────────────────────────────────────────────── */
.article-page {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 110px 2rem 5rem;
}

.article-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.article-breadcrumb a:hover { color: var(--text-dim); }

.article-header { margin-bottom: 2.5rem; }

.article-meta-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.article-cat-badge {
  background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px; padding: 3px 12px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em;
}
.article-date, .article-read { font-size: 0.78rem; color: var(--text-muted); }

.article-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.article-summary {
  font-size: 1.05rem; color: var(--text-dim); line-height: 1.75;
  border-left: 2px solid rgba(0,212,255,0.4);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.article-hero-img {
  width: 100%; max-height: 440px; object-fit: cover;
  border-radius: var(--card-r);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  filter: brightness(0.9);
}

.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.article-tag {
  padding: 5px 14px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem; color: var(--text-dim);
}

/* ── Article content ───────────────────────────────────────────────────────── */
.article-content {
  font-size: 1rem; color: var(--text-dim); line-height: 1.85;
}
.article-content h2 {
  font-size: 1.35rem; color: var(--text); margin: 3rem 0 1rem;
  letter-spacing: -0.025em;
}
.article-content p { margin-bottom: 1.25rem; }
.article-content strong { color: var(--text); font-weight: 600; }

/* ── Related ───────────────────────────────────────────────────────────────── */
.related-section { margin-top: 5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-dim); font-weight: 600; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }

/* ── Search overlay ────────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,9,15,0.85);
  backdrop-filter: blur(24px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 100px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-modal {
  width: 100%; max-width: 600px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.search-input-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 1rem; font-family: var(--font);
}
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px; display: flex;
}
.search-close:hover { color: var(--text); }

.search-results { max-height: 380px; overflow-y: auto; }
.search-result-item {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--glass); }
.search-result-item h4 { font-size: 0.875rem; margin-bottom: 3px; color: var(--text); }
.search-result-item p { font-size: 0.78rem; color: var(--text-muted); }
.search-result-cat { font-size: 0.68rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }

/* ── Reading progress ──────────────────────────────────────────────────────── */
.reading-progress {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  text-align: center;
  color: var(--text-muted); font-size: 0.78rem;
}
footer a { color: var(--text-dim); }
footer a:hover { color: var(--text); }

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.45s ease forwards; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-content { grid-template-columns: 1fr; padding: 4rem 2rem 5rem; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .sidebar-card { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-search input { width: 120px; }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat { padding: 0.75rem 1.25rem; }
  .stat-divider { display: none; }
  .main-content { padding: 3rem 1.25rem 4rem; }
  .articles-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── New component ── */

/* Rain feature highlight */
.rain-highlight {
  position: relative; z-index: 1;
  padding: 0 2.5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.rain-highlight-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 2.25rem 2.5rem;
  backdrop-filter: blur(16px);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.rain-highlight-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,212,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.rain-highlight-inner:hover {
  border-color: var(--border-h);
  box-shadow: 0 20px 60px rgba(0,212,255,0.07);
}

.rain-highlight-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}

.rain-highlight-body {
  flex: 1;
  min-width: 0;
}

.rain-highlight-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.45rem;
}

.rain-highlight-heading {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.rain-highlight-text {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.rain-highlight-badge {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: #e0f7ff;
  border: 1px solid rgba(0,180,220,0.35);
  border-radius: 10px;
  padding: 5px 14px;
  font-size: 0.75rem; font-weight: 700; color: #0a1628;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,180,220,0.12);
}

.rain-highlight-badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #0a7fa3;
  animation: pulse 2.5s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .rain-highlight { padding: 0 2rem 3.5rem; }
  .rain-highlight-inner { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .rain-highlight { padding: 0 1.25rem 3rem; }
  .rain-highlight-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
  .rain-highlight-badge { align-self: flex-start; }
}

/* ── Hero metrics strip ── */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,212,255,0.7);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-metric-sep {
  color: rgba(0,212,255,0.3);
  font-size: 0.75rem;
}

/* ── Shared section utilities ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

/* ── How-to section ── */
.how-to-section {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.how-to-inner {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 3rem 3rem 2.5rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.how-to-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--glass-b);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: var(--card-r);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--border-h);
  border-top-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,212,255,0.1);
  transform: translateY(-3px);
}

.step-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.825rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .how-to-section { padding: 0 2rem 3.5rem; }
  .how-to-inner { padding: 2.5rem 2rem 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .how-to-section { padding: 0 1.25rem 3rem; }
  .how-to-inner { padding: 2rem 1.5rem 1.75rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .step-number { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Use cases section ── */
.use-cases-section {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.use-cases-inner {
  padding: 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.use-case-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(12px);
}

.use-case-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.08);
}

.use-case-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.use-case-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.use-case-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .use-cases-section { padding: 0 2rem 3.5rem; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .use-cases-section { padding: 0 1.25rem 3rem; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  .use-cases-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 8px; font-size: 0.8rem; }
}

/* ── New component ── */

/* ── Section commons ──────────────────────────────────────────────────────── */
.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

/* ── Featured Main Video ──────────────────────────────────────────────────── */
.featured-video-section {
  padding: 5rem 0 4rem;
  position: relative; z-index: 1;
  text-align: center;
}
.featured-video-inner {
  max-width: 960px; margin: 0 auto; padding: 0 2rem;
}
.featured-video-wrap {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-h);
  box-shadow: 0 0 60px rgba(0,212,255,0.12), 0 0 120px rgba(0,212,255,0.05);
}

/* Новый встроенный плеер с заставкой */
.fv-player {
  position: relative;
  margin-top: 2.5rem;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 0 60px rgba(0,212,255,0.12), 0 20px 60px rgba(0,0,0,0.5);
}
.fv-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fv-player:hover .fv-thumb { transform: scale(1.03); }
.fv-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.fv-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: rgba(0,212,255,0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(0,212,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #00d4ff;
  transition: all 0.3s ease;
  animation: fvPulse 2.5s ease-in-out infinite;
}
.fv-player:hover .fv-play-btn {
  background: rgba(0,212,255,0.3);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(0,212,255,0.4);
}
@keyframes fvPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.35); }
  50%       { box-shadow: 0 0 0 20px rgba(0,212,255,0); }
}
.fv-duration {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
}
.featured-video-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ── Video Section ────────────────────────────────────────────────────────── */
.video-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
}
.video-section-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.video-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.video-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-card-body {
  padding: 1.25rem;
}
.video-tag {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.video-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.video-card-body p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── For Whom Section ─────────────────────────────────────────────────────── */
.for-whom-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.for-whom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.for-whom-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition);
}
.for-whom-card:hover { border-color: var(--border-h); }
.for-whom-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.for-whom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.for-whom-card > p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.for-whom-card ul {
  list-style: none;
  padding: 0;
}
.for-whom-card ul li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 4px 0;
  padding-left: 1rem;
  position: relative;
}
.for-whom-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}

/* ── Benefits Section ─────────────────────────────────────────────────────── */
.benefits-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
}
.benefits-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.benefit-item:hover { border-color: var(--border-h); }
.benefit-icon { font-size: 1.75rem; flex-shrink: 0; }
.benefit-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.benefit-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Calculator Section ───────────────────────────────────────────────────── */
.calculator-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.calculator-inner {
  max-width: 700px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.calculator-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.calc-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  text-align: left;
}
.calc-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.calc-field input:focus { border-color: rgba(0,212,255,0.4); }
.calc-btn {
  width: 100%;
  background: var(--cyan);
  color: #07090f;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity var(--transition);
}
.calc-btn:hover { opacity: 0.88; }
.calc-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px;
}
.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.calc-result-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.calc-result-kg {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.calc-result-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Cases Section ────────────────────────────────────────────────────────── */
.cases-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
}
.cases-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.case-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 2rem;
  transition: border-color var(--transition);
}
.case-card:hover { border-color: var(--border-h); }
.case-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,212,255,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.case-details { display: flex; flex-direction: column; gap: 0.75rem; }
.case-detail span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.15rem;
}
.case-detail p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* ── Comparison Section ───────────────────────────────────────────────────── */
.comparison-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.comparison-inner {
  max-width: 900px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  overflow: hidden;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table thead th {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.03);
}
.comparison-table th.hot { color: #f97316; }
.comparison-table th.cold { color: var(--cyan); }
.comparison-table td.hot { color: var(--text-dim); }
.comparison-table td.cold { color: var(--text-dim); }
.comparison-table td.good { color: var(--cyan); font-weight: 600; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.015); }

/* ── Contact Section ──────────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 0;
  position: relative; z-index: 1;
}
.contact-inner {
  max-width: 800px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.contact-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
}
.form-field input,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus { border-color: rgba(0,212,255,0.4); }
.form-field select option { background: #0d1117; }
.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.form-checkbox:hover { border-color: rgba(0,212,255,0.3); }
.form-checkbox input { accent-color: var(--cyan); }
.form-submit {
  background: var(--cyan);
  color: #07090f;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity var(--transition);
  margin-top: 0.5rem;
  align-self: flex-start;
}
.form-submit:hover { opacity: 0.88; }
.contact-whatsapp {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-whatsapp p {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: opacity var(--transition);
}
.whatsapp-btn:hover { opacity: 0.88; }

/* ── Responsive additions ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .for-whom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calc-fields { grid-template-columns: 1fr; }
  .contact-whatsapp { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── New component: Language switcher ────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.lang-btn svg {
  flex-shrink: 0;
  border-radius: 50%;
}

.lang-btn:hover {
  color: var(--text);
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.05);
}

.lang-btn.lang-active {
  color: var(--cyan);
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.08);
}

@media (max-width: 768px) {
  .lang-btn span { display: none; }
  .lang-switcher { padding: 3px; }
  .lang-btn { padding: 4px; }
}

/* ── New component: Video modal (YouTube lightbox) ───────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 8, 16, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 212, 255, 0.08);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.open .video-modal-container {
  transform: scale(1);
}

.video-modal-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-modal-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  padding: 4px 8px;
  font-family: var(--font);
  transition: opacity 0.2s;
  z-index: 1;
}

.video-modal-close:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .video-modal { padding: 1rem; padding-top: 4rem; align-items: flex-start; }
  .video-modal-close { top: -40px; font-size: 1.75rem; }
}

/* ── New component: Animations ───────────────────────────────────────────── */

/* Enhanced transitions on interactive components */
.btn,
.nav-link,
.nav-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta,
.calc-btn,
.form-submit,
.whatsapp-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover,
.calc-btn:hover,
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.hero-cta:active,
.calc-btn:active,
.form-submit:active {
  transform: translateY(0);
}

/* Article card enhanced hover */
.article-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

/* Scroll-in animation: only runs when system allows motion */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
  }

  .stagger-1 { animation-delay: 0.1s; }
  .stagger-2 { animation-delay: 0.2s; }
  .stagger-3 { animation-delay: 0.3s; }
  .stagger-4 { animation-delay: 0.4s; }
  .stagger-5 { animation-delay: 0.5s; }

  /* Shimmer for skeleton loading */
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .skeleton {
    background: linear-gradient(90deg, var(--glass) 25%, var(--glass-b) 50%, var(--glass) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite;
  }

  /* Glow pulse for accent elements */
  @keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
    50%       { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
  }

  .category-btn.active {
    animation: glow-pulse 2.5s ease-in-out infinite;
  }

  .tag-chip.active {
    animation: glow-pulse 2.5s ease-in-out infinite;
  }

  .lang-btn.lang-active {
    animation: glow-pulse 2.5s ease-in-out infinite;
  }
}

/* Reduced-motion fallback: keep static state correct */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
  }

  .hero-img-wrap,
  .hero-badge,
  .hero-title-line,
  .hero-subtitle,
  .hero-stats,
  .hero-actions,
  .hero-floating-card--top,
  .hero-floating-card--bottom {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── New component: Hero two-column layout ───────────────────────────────── */

/* Override old single-column hero to become a two-column grid */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 100px 0 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Hero text column ── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-text .hero-badge {
  display: inline-block;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  /* reset flex from old badge rule */
  gap: 0;
  align-items: unset;
  backdrop-filter: none;
}

/* Hide the dot inside the new badge (there is none, but just in case) */
.hero-text .hero-badge .dot { display: none; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: #07090f;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,212,255,0.3);
  color: #07090f;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  border-color: var(--border-h);
  background: var(--glass-b);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,212,255,0.08);
}
.btn-secondary:active { transform: translateY(0); }

/* Metrics and stats now left-aligned under the text column */
.hero-text .hero-metrics {
  justify-content: flex-start;
}

.hero-text .hero-stats {
  /* keep existing strip styles, just left-align */
  align-self: flex-start;
}

/* ── Hero image column ── */
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.2), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(6,8,16,0.6));
  border-radius: 0 0 24px 24px;
  pointer-events: none;
}

/* ── Hero animations ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-text .hero-badge {
    animation: fadeInDown 0.6s ease both;
    animation-delay: 0.1s;
  }
  .hero-title {
    animation: fadeInLeft 0.8s ease both;
    animation-delay: 0.2s;
  }
  .hero-subtitle {
    animation: fadeInLeft 0.8s ease both;
    animation-delay: 0.4s;
  }
  .hero-actions {
    animation: fadeInLeft 0.8s ease both;
    animation-delay: 0.6s;
  }
  .hero-image-wrap {
    animation: fadeInRight 1s ease both;
    animation-delay: 0.3s;
  }

  /* Pulsing glow behind the photo */
  @keyframes glow-rotate {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
  }
  .hero-image-glow {
    animation: glow-rotate 8s linear infinite;
  }
}

/* ── Hero responsive (legacy two-column — kept for non-breaking fallback) ── */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 50px;
    text-align: center;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 1.25rem;
  }
  .hero-text { align-items: center; }
  .hero-actions { justify-content: center; }
}

/* ── New component: Hero redesign with hero-girl photo ───────────────────── */

/* Layout override */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  /* reset old text-align and flex-direction */
  text-align: left;
  justify-content: flex-start;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 36px;
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Background glow blobs */
.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow--left {
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  top: -100px;
  left: -200px;
}
.hero-bg-glow--right {
  background: radial-gradient(circle, rgba(0,212,255,0.05), transparent 70%);
  bottom: -100px;
  right: -200px;
}

/* Text column */
.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge — override inherited styles from old .hero-text .hero-badge rule */
.hero-text .hero-badge {
  display: inline-block;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(0,212,255,0.05);
  gap: 0;
  align-items: unset;
  backdrop-filter: none;
}

/* Title: two stacked spans instead of gradient on h1 */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* reset gradient text from old rule */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  letter-spacing: -0.035em;
}

.hero-title-line {
  color: #fff;
  display: block;
}
.hero-title-accent {
  color: var(--cyan);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

/* New stats row (hero-stat / hero-stat-num — distinct from old .stat/.stat-number) */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  /* reset old strip styles */
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  align-self: flex-start;
}

.hero-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Actions row */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Outline button variant */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--cyan);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

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

/* Full-width hero photos */
.hero-fullwidth-photos {
  display: flex;
  width: 100vw;
  max-width: 100vw;
  height: 480px;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  flex: 0 0 auto;
}
.hero-fw-img-wrap {
  flex: 0 0 50%;
  width: 50vw;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.hero-fw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.hero-fw-img-wrap:hover img { transform: scale(1.04); }
.hero-fw-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,8,16,0.6) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-content { padding: 0 20px 28px; }
  .hero-fullwidth-photos { height: 320px; }
  .hero-fw-img-wrap { flex-basis: 50%; width: 50vw; height: 100%; }
}

.hero-glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 32px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.15), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.1);
  width: 100%;
}

/* .hero-img base rule is defined above — single canonical rule */

.hero-img-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(6,8,16,0.7));
  pointer-events: none;
}

/* Floating cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
}
.hero-floating-card--top  { top: 40px;    left: -20px; }
.hero-floating-card--bottom { bottom: 60px; right: -20px; }
.hero-card-icon { font-size: 1rem; }

/* Mobile */
@media (max-width: 900px) {
  .hero {
    padding: 80px 0 40px;
    text-align: center;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-img { height: 340px; }
  .hero-stats { justify-content: center; align-self: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-floating-card--top    { top: 10px;    left: 0; }
  .hero-floating-card--bottom { bottom: 10px; right: 0; }
  .hero-actions { justify-content: center; }
  .hero-text { align-items: center; }
}

/* Animations — only when motion is allowed */
@media (prefers-reduced-motion: no-preference) {
  /* keyframes fadeInLeft / fadeInRight / fadeInDown already defined above — reused here */

  .hero-text .hero-badge {
    animation: fadeInDown 0.6s ease both;
    animation-delay: 0.1s;
  }
  .hero-title-line:nth-child(1) {
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.2s;
  }
  .hero-title-line:nth-child(2) {
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.35s;
  }
  .hero-subtitle {
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.5s;
  }
  .hero-stats {
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.6s;
  }
  .hero-actions {
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.75s;
  }

  /* Photo wrap: fade-in + continuous float */
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
  }
  .hero-img-wrap {
    animation: fadeInRight 0.9s ease both 0.3s, floatY 6s ease-in-out 1.2s infinite;
  }

  /* Floating cards */
  @keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-8px) rotate(1deg); }
  }
  @keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50%       { transform: translateY(-6px) rotate(-1deg); }
  }
  .hero-floating-card--top {
    animation: fadeInLeft 0.6s ease both 0.8s, floatCard1 5s ease-in-out 1.5s infinite;
  }
  .hero-floating-card--bottom {
    animation: fadeInRight 0.6s ease both 1s, floatCard2 5.5s ease-in-out 2s infinite;
  }

  /* Glow ring pulse */
  @keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
  }
  .hero-glow-ring {
    animation: glowPulse 4s ease-in-out infinite;
  }
}

/* ── New component: Local HTML5 video player ─────────────────────────────── */

.local-video-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.local-video-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.local-player-wrap {
  margin-top: 32px;
}

.local-player {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.lp-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 72px;
  height: 72px;
  background: rgba(0,212,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 28px;
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.lp-play-icon.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.lp-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(6,8,16,0.9));
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.local-player.hide-controls .lp-controls {
  opacity: 0;
}

.lp-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.lp-btn:hover {
  opacity: 1;
  color: var(--cyan);
}

.lp-progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}

.lp-progress-wrap:hover {
  height: 6px;
}

.lp-progress-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  pointer-events: none;
}

.lp-progress-thumb {
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.lp-progress-wrap:hover .lp-progress-thumb {
  transform: translateY(-50%) scale(1);
}

.lp-time {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  min-width: 80px;
  flex-shrink: 0;
}

.lp-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lp-volume-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.lp-volume-fill {
  height: 100%;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .local-video-inner { padding: 0 20px; }
  .lp-volume-bar { width: 44px; }
  .lp-time { min-width: 68px; font-size: 11px; }
}

@media (max-width: 480px) {
  .lp-volume-wrap { display: none; }
}

/* ── New component: YouTube custom player ────────────────────────────────── */

.yt-player-wrap {
  max-width: 900px;
  margin: 32px auto 0;
}

.yt-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

.yt-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.yt-player:hover .yt-thumbnail {
  transform: scale(1.03);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0,212,255,0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(0,212,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 32px;
  transition: all 0.3s ease;
  z-index: 2;
  animation: ytPulse 2s ease-in-out infinite;
}

.yt-player:hover .yt-play-btn {
  background: rgba(0,212,255,0.25);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(0,212,255,0.3);
}

@keyframes ytPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(0,212,255,0); }
}

.yt-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Controls bar shared with local player — positioned at bottom of .yt-player */
.yt-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

@media (max-width: 768px) {
  .yt-player-wrap { margin-top: 24px; }
}

/* ── New component: Contact address block ────────────────────────────────── */
.contact-address {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.contact-address:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.35);
}
.nav-address {
  text-decoration: none;
  transition: color 0.2s;
}
.nav-address:hover { color: #00d4ff; }
.address-icon { font-size: 22px; }
.address-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.address-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
