/* RELOADER — Modern Light Blue Theme */
:root {
  --page-max: 1320px;
  --page-padding: clamp(1rem, 4vw, 2rem);

  --bg-base: #dceaf8;
  --bg-base-mid: #eef5fc;
  --bg-base-soft: #f5f9ff;
  --bg-elevated: rgba(255, 255, 255, 0.72);
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: rgba(248, 251, 255, 0.95);
  --bg-input: rgba(255, 255, 255, 0.95);

  --mesh-blue: rgba(66, 165, 245, 0.2);
  --mesh-navy: rgba(21, 101, 192, 0.14);
  --mesh-violet: rgba(103, 58, 183, 0.07);
  --mesh-cyan: rgba(0, 188, 212, 0.1);

  --border: rgba(12, 61, 110, 0.1);
  --border-strong: rgba(12, 61, 110, 0.18);

  --brand-primary: #1565c0;
  --brand-primary-dark: #0d47a1;
  --brand-primary-light: #42a5f5;
  --brand-primary-glow: rgba(21, 101, 192, 0.28);

  --navy: #0c3d6e;
  --navy-dark: #082849;

  --text: #1e293b;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(12, 61, 110, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  --shadow-lg: 0 16px 48px rgba(12, 61, 110, 0.11), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.store-body {
  margin: 0;
  font-family: 'Sarabun', system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(165deg, #c8dff5 0%, var(--bg-base) 22%, var(--bg-base-mid) 50%, var(--bg-base-soft) 78%, #dde8f6 100%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.store-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 8% -5%, var(--mesh-blue), transparent 58%),
    radial-gradient(ellipse 65% 45% at 98% 8%, var(--mesh-violet), transparent 52%),
    radial-gradient(ellipse 75% 50% at 55% 105%, var(--mesh-navy), transparent 58%),
    radial-gradient(ellipse 45% 35% at 88% 72%, var(--mesh-cyan), transparent 48%);
  pointer-events: none;
  z-index: 0;
}

body.store-body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 101, 192, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 192, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 15%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 15%, transparent 88%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

a { color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary); }

/* Layout container */
.page-container,
.top-bar-inner,
.main-header-inner,
.hero-inner,
.section-inner,
.store-footer-inner,
.store-footer-bottom {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 4px 24px rgba(12, 61, 110, 0.06);
}

.top-bar {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  border-bottom: none;
  font-size: 0.82rem;
}

.top-bar-inner {
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.top-bar-brand {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 32px;
  min-width: 0;
  margin-left: auto;
}

.top-bar-item--address span {
  white-space: normal;
  max-width: 420px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88) !important;
  white-space: nowrap;
  transition: color var(--transition);
}

.top-bar-item:hover { color: #90caf9 !important; }
.top-bar-item i { font-size: 0.78rem; opacity: 0.9; }

.main-header {
  background: transparent;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.store-nav a:not(.btn-primary-store) {
  color: var(--text-secondary);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}

.store-nav a:not(.btn-primary-store):hover,
.store-nav a:not(.btn-primary-store).active {
  background: rgba(21, 101, 192, 0.08);
  color: var(--brand-primary-dark);
}

.store-nav .btn-primary-store {
  margin-left: 8px;
}

.store-menu-toggle {
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--brand-primary-dark);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn-primary-store,
.btn-outline-store,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary-store {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #fff !important;
  box-shadow: 0 4px 16px var(--brand-primary-glow);
}

.btn-primary-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-primary-glow);
  color: #fff !important;
}

.btn-outline-store {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff !important;
}

.btn-outline-store:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff !important;
}

/* btn-outline-store บนพื้นหลังสว่าง (ไม่ใช่ hero/cta มืด) */
.section:not(.hero-tech):not(.cta-tech) .btn-outline-store,
.product-actions .btn-outline-store {
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--brand-primary-dark) !important;
  box-shadow: 0 2px 8px rgba(12, 61, 110, 0.06);
}

.section:not(.hero-tech):not(.cta-tech) .btn-outline-store:hover,
.product-actions .btn-outline-store:hover {
  background: var(--bg-elevated);
  border-color: var(--brand-primary);
  color: var(--brand-primary) !important;
}

.btn-outline-dark {
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--brand-primary-dark) !important;
}

.btn-outline-dark:hover {
  background: var(--bg-elevated);
  border-color: var(--brand-primary);
  color: var(--brand-primary-dark) !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  border-bottom: none;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #1565c0 100%);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 90%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #bbdefb;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 16ch;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0 0 32px;
}

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

.hero .btn-primary-store {
  background: #fff;
  color: var(--brand-primary-dark) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary-store:hover {
  background: #e3f2fd;
  color: var(--brand-primary-dark) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(227, 242, 253, 0.82) 45%, rgba(255, 255, 255, 0.5) 100%);
  border-top: 1px solid rgba(21, 101, 192, 0.08);
  border-bottom: 1px solid rgba(21, 101, 192, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(66, 165, 245, 0.1), transparent 42%),
    radial-gradient(circle at 85% 50%, rgba(103, 58, 183, 0.06), transparent 38%);
  pointer-events: none;
}

.section-alt > .section-inner {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 640px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.category-card {
  display: block;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 248, 255, 0.88) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  color: inherit;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 101, 192, 0.35);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.2), rgba(21, 101, 192, 0.08));
  border: 1px solid rgba(21, 101, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.category-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 255, 0.9) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(21, 101, 192, 0.11);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 101, 192, 0.3);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-input);
  border-bottom: 1px solid var(--border);
}

.product-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-sku {
  font-size: 0.78rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.product-card h3 a { color: var(--text); }
.product-card h3 a:hover { color: var(--brand-primary); }

.product-card .short-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  flex: 1;
}

.product-price {
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.product-card .btn-link {
  font-weight: 600;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}

.feature-item {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 244, 255, 0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(21, 101, 192, 0.11);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-item:hover {
  border-color: rgba(21, 101, 192, 0.28);
  box-shadow: var(--shadow-lg);
}

.feature-item i {
  font-size: 1.75rem;
  color: var(--brand-primary);
  margin-bottom: 14px;
  display: block;
}

.feature-item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Catalog toolbar */
.catalog-toolbar {
  margin-bottom: 24px;
}

.catalog-toolbar form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-toolbar input[type="search"],
.catalog-toolbar select,
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.catalog-toolbar input[type="search"]:focus,
.catalog-toolbar select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(21, 101, 192, 0.5);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.catalog-toolbar input[type="search"] {
  flex: 1;
  min-width: min(100%, 260px);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.category-pill:hover,
.category-pill.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.product-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.product-detail-info h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.product-detail-info .badge-cat {
  display: inline-block;
  background: #e3f2fd;
  border: 1px solid rgba(21, 101, 192, 0.25);
  color: var(--brand-primary-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table th {
  width: 38%;
  color: var(--text-muted);
  font-weight: 600;
  background: #f0f7ff;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(160deg, #ffffff 0%, #e3f2fd 100%);
  border: 1px solid rgba(21, 101, 192, 0.2);
  color: var(--text);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--brand-primary-dark);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info-item i {
  color: var(--brand-primary);
  font-size: 1.15rem;
  margin-top: 2px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.alert-danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.alert-danger a { color: #dc2626; text-decoration: underline; }

/* Footer */
.store-footer {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #061a33 0%, var(--navy-dark) 35%, var(--navy) 70%, #0d47a1 100%);
  border-top: none;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.store-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(66, 165, 245, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(103, 58, 183, 0.08), transparent 50%);
  pointer-events: none;
}

.store-footer-inner,
.store-footer-bottom {
  position: relative;
  z-index: 1;
}

.store-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 4px;
}

.store-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.store-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.store-footer a { color: rgba(255, 255, 255, 0.72); }
.store-footer a:hover { color: #90caf9; }

.store-footer-bottom {
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Utility */
.text-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.text-back:hover { color: var(--brand-primary); }

.content-block {
  max-width: 720px;
}

.content-block p {
  color: var(--text-secondary);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-price-lg {
  font-size: 1.35rem;
  margin: 20px 0;
}

.product-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.empty-state {
  color: var(--text-muted);
}

.footer-tagline {
  margin-top: 12px;
}

.subsection {
  margin-top: 3rem;
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.subsection .product-grid {
  margin-top: 20px;
}

.text-preline {
  white-space: pre-line;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
  .store-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .store-menu-toggle { display: inline-flex; }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-bar-contact {
    justify-content: flex-start;
    margin-left: 0;
    gap: 8px 20px;
  }

  .top-bar-item--address span {
    max-width: none;
  }

  .store-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: var(--page-padding);
    right: var(--page-padding);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }

  .main-header { position: relative; }

  .store-nav.open { display: flex; }

  .store-nav .btn-primary-store {
    margin-left: 0;
    width: 100%;
    margin-top: 4px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .store-footer-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 { max-width: none; }
}

@media (min-width: 1400px) {
  :root {
    --page-max: 1400px;
  }
}

/* ========== Homepage — Tech Theme ========== */

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

@keyframes scanMove {
  0% { transform: translateY(-100%); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateY(500%); opacity: 0; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(66, 165, 245, 0.6); }
  50% { opacity: 0.85; box-shadow: 0 0 0 8px rgba(66, 165, 245, 0); }
}

@keyframes barPulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes flowDash {
  to { background-position: 24px 0; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

@keyframes meshShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes barHeight {
  0%, 100% { height: var(--h, 50%); }
  50% { height: calc(var(--h, 50%) + 12%); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

@keyframes streamFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(200%); opacity: 0; }
}

@keyframes blinkText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes particleDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  33% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
  66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.45; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Ambient page layer */
.page-home .ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-home .ambient-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(66, 165, 245, 0.45);
  box-shadow: 0 0 12px rgba(66, 165, 245, 0.35);
  animation: particleDrift 12s ease-in-out infinite;
}

.page-home .ambient-particle:nth-child(2) {
  background: rgba(103, 58, 183, 0.35);
  box-shadow: 0 0 10px rgba(103, 58, 183, 0.3);
}

.page-home .ambient-particle:nth-child(4) {
  background: rgba(0, 188, 212, 0.4);
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.page-home .ambient-particle:nth-child(1) { top: 12%; left: 8%; animation-duration: 14s; }
.page-home .ambient-particle:nth-child(2) { top: 28%; left: 75%; animation-duration: 11s; animation-delay: -2s; width: 4px; height: 4px; }
.page-home .ambient-particle:nth-child(3) { top: 55%; left: 15%; animation-duration: 16s; animation-delay: -5s; }
.page-home .ambient-particle:nth-child(4) { top: 70%; left: 60%; animation-duration: 13s; animation-delay: -3s; width: 5px; height: 5px; }
.page-home .ambient-particle:nth-child(5) { top: 40%; left: 45%; animation-duration: 18s; animation-delay: -7s; width: 3px; height: 3px; }
.page-home .ambient-particle:nth-child(6) { top: 85%; left: 30%; animation-duration: 15s; animation-delay: -1s; }

body.page-home.store-body::before {
  animation: meshShift 18s ease-in-out infinite;
  background-size: 200% 200%;
  background:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(66, 165, 245, 0.28), transparent 58%),
    radial-gradient(ellipse 65% 45% at 98% 8%, rgba(103, 58, 183, 0.12), transparent 52%),
    radial-gradient(ellipse 75% 50% at 55% 105%, rgba(21, 101, 192, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 35% at 88% 72%, rgba(0, 188, 212, 0.14), transparent 48%);
}

.page-home .hero-tech {
  background: linear-gradient(135deg, #041220 0%, var(--navy-dark) 28%, var(--navy) 52%, #1565c0 72%, #1976d2 88%, #42a5f5 100%);
  background-size: 220% 220%;
  animation: meshShift 12s ease-in-out infinite;
}

.hero-grid-move {
  position: absolute;
  inset: -50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 20s linear infinite;
  opacity: 0.5;
}

.hero-orb--3 {
  width: 160px;
  height: 160px;
  background: rgba(144, 202, 249, 0.2);
  top: 40%;
  right: 30%;
  animation: floatOrb 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.hero-scan--2 {
  animation-delay: -2.5s;
  animation-duration: 7s;
  opacity: 0.5;
}

.hero-gradient {
  background-size: 200% auto;
  animation: gradientText 4s ease-in-out infinite;
}

.tech-tags span {
  animation: tagFloat 3s ease-in-out infinite;
}

.tech-tags span:nth-child(2) { animation-delay: 0.4s; }
.tech-tags span:nth-child(3) { animation-delay: 0.8s; }
.tech-tags span:nth-child(4) { animation-delay: 1.2s; }

.tech-panel-wrap {
  position: relative;
}

.tech-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px dashed rgba(144, 202, 249, 0.35);
  animation: ringSpin 24s linear infinite;
}

.tech-panel-wrap .tech-panel {
  animation: panelFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.tech-blink {
  animation: blinkText 1.2s ease-in-out infinite;
}

.tech-chart-bar {
  flex: 1;
  height: var(--h, 55%);
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: barHeight 2.5s ease-in-out infinite;
  background: linear-gradient(180deg, #42a5f5, #1565c0);
  border-radius: 4px 4px 0 0;
}

.tech-chart-bar:nth-child(1) { --h: 45%; animation-delay: 0s; animation-duration: 2.2s; }
.tech-chart-bar:nth-child(2) { --h: 72%; animation-delay: 0.3s; animation-duration: 2.6s; }
.tech-chart-bar:nth-child(3) { --h: 58%; animation-delay: 0.6s; animation-duration: 2.1s; }
.tech-chart-bar:nth-child(4) { --h: 88%; animation-delay: 0.2s; animation-duration: 2.8s; }
.tech-chart-bar:nth-child(5) { --h: 65%; animation-delay: 0.5s; animation-duration: 2.4s; }
.tech-chart-bar:nth-child(6) { --h: 92%; animation-delay: 0.8s; animation-duration: 2.3s; }
.tech-chart-bar:nth-child(7) { --h: 78%; animation-delay: 0.1s; animation-duration: 2.7s; }

.tech-stream {
  position: relative;
  height: 3px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.tech-stream span {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #42a5f5, transparent);
  animation: streamFlow 2s linear infinite;
}

.tech-stream span:nth-child(2) { animation-delay: 0.7s; width: 20%; }
.tech-stream span:nth-child(3) { animation-delay: 1.4s; width: 25%; }

.tech-nodes span {
  animation: tagFloat 4s ease-in-out infinite;
}

.tech-nodes span:nth-child(2) { animation-delay: 0.5s; }
.tech-nodes span:nth-child(3) { animation-delay: 1s; }
.tech-nodes span:nth-child(4) { animation-delay: 1.5s; }

.tech-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.tech-marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 28s linear infinite;
  padding-left: 48px;
}

.tech-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.tech-marquee-track i {
  color: #90caf9;
}

.stat-card i {
  animation: gentleBob 3s ease-in-out infinite;
}

.stat-card:nth-child(2) i { animation-delay: 0.4s; }
.stat-card:nth-child(3) i { animation-delay: 0.8s; }
.stat-card:nth-child(4) i { animation-delay: 1.2s; }

.section-motion {
  position: relative;
}

.section-motion::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 165, 245, 0.1), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 188, 212, 0.06), transparent 45%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.category-card--tech {
  animation: gentleBob 5s ease-in-out infinite;
}

.category-card--tech:nth-child(2) { animation-delay: 0.6s; }
.category-card--tech:nth-child(3) { animation-delay: 1.2s; }
.category-card--tech:nth-child(4) { animation-delay: 1.8s; }

.category-card--tech::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(66, 165, 245, 0.12) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}

.tech-flow-icon {
  animation: gentleBob 4s ease-in-out infinite;
}

.tech-flow-step:nth-child(2) .tech-flow-icon { animation-delay: 0.5s; }
.tech-flow-step:nth-child(4) .tech-flow-icon { animation-delay: 1s; }
.tech-flow-step:nth-child(6) .tech-flow-icon { animation-delay: 1.5s; }
.tech-flow-step:nth-child(8) .tech-flow-icon { animation-delay: 2s; }

.tech-flow-line {
  animation: flowDash 0.8s linear infinite;
}

.feature-item--tech {
  animation: gentleBob 6s ease-in-out infinite;
}

.feature-item--tech:nth-child(2) { animation-delay: 0.8s; }
.feature-item--tech:nth-child(3) { animation-delay: 1.6s; }
.feature-item--tech:nth-child(4) { animation-delay: 2.4s; }

.feature-item--tech i {
  display: inline-block;
  animation: iconSpin 20s linear infinite;
}

.page-home .btn-primary-store {
  background-size: 200% auto;
  animation: meshShift 4s ease infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: pulseDot 2s ease infinite;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.section-label--light { color: #90caf9; }

.hero-tech {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 280px;
  height: 280px;
  background: rgba(66, 165, 245, 0.25);
  top: -80px;
  right: 10%;
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(21, 101, 192, 0.3);
  bottom: -40px;
  left: 5%;
  animation-delay: -3s;
}

.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(144, 202, 249, 0.8), transparent);
  animation: scanMove 5s linear infinite;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero-presentation {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(144, 202, 249, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.6s ease;
}

.hero-presentation-slider {
  position: relative;
}

.hero-presentation-slide {
  display: block;
}

.hero-presentation-slide:not(.is-active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-presentation-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-presentation-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-presentation-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.hero-presentation-dot.is-active {
  background: #90caf9;
  transform: scale(1.2);
}

.hero-presentation:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 24px rgba(66, 165, 245, 0.2);
}

.hero-presentation-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}

.hero-gradient {
  display: block;
  background: linear-gradient(90deg, #90caf9, #fff, #64b5f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tech h1 {
  max-width: none;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tech-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bbdefb;
}

.tech-panel {
  background: rgba(8, 40, 73, 0.65);
  border: 1px solid rgba(144, 202, 249, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e3f2fd;
  margin-bottom: 16px;
}

.tech-panel-status {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #4ade80;
  font-weight: 700;
}

.tech-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.tech-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.tech-metric small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.tech-metric strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}

.tech-metric span {
  font-size: 0.65rem;
  color: #81c784;
}

.tech-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  padding: 8px 4px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #42a5f5, #1565c0);
  border-radius: 4px 4px 0 0;
}

.tech-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-nodes span {
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(21, 101, 192, 0.35);
  border: 1px solid rgba(144, 202, 249, 0.2);
  color: #bbdefb;
}

.tech-nodes i { margin-right: 4px; }

.tech-stats {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(219, 234, 254, 0.92), rgba(255, 255, 255, 0.82));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
  padding: 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.stat-card:last-child { border-right: none; }

.stat-card:hover {
  background: rgba(227, 242, 253, 0.65);
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  display: block;
}

.stat-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--brand-primary-dark);
  line-height: 1.1;
}

.stat-num::after {
  content: '+';
  font-size: 0.85em;
  color: var(--brand-primary-light);
}

.stat-card:nth-child(1) .stat-num::after,
.stat-card:nth-child(2) .stat-num::after {
  content: '+';
}

.stat-card:nth-child(3) .stat-num::after {
  content: '%';
}

.stat-card:nth-child(4) .stat-num::after {
  content: '';
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.category-card--tech {
  position: relative;
  overflow: hidden;
}

.category-card--tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.category-card--tech:hover::before {
  transform: scaleX(1);
}

.card-arrow {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.category-card--tech:hover .card-arrow {
  transform: translateX(4px);
}

.tech-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.tech-flow-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px 12px;
}

.tech-flow-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(227, 242, 253, 0.9));
  border: 2px solid rgba(21, 101, 192, 0.18);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tech-flow-step:hover .tech-flow-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px var(--brand-primary-glow);
}

.tech-flow-step h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.tech-flow-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tech-flow-line {
  flex: 0 0 40px;
  align-self: center;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand-primary-light) 0,
    var(--brand-primary-light) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: flowDash 1.2s linear infinite;
  opacity: 0.6;
}

.feature-item--tech {
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item--tech:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cta-tech {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #041220 0%, var(--navy-dark) 22%, var(--navy) 48%, #1565c0 72%, #1e88e5 88%, #42a5f5 100%);
  background-size: 200% 200%;
  animation: meshShift 14s ease-in-out infinite;
  border: none;
}

.cta-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(66, 165, 245, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(103, 58, 183, 0.15), transparent 40%);
  pointer-events: none;
}

.cta-tech-inner {
  position: relative;
  z-index: 1;
}

.cta-tech-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.35), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.section-title--light,
.section-sub--light {
  color: #fff;
}

.section-sub--light {
  opacity: 0.82;
}

.btn-glow {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(66, 165, 245, 0.45);
}

.page-home .product-card.reveal.is-visible:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(21, 101, 192, 0.15);
}

@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

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

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .tech-flow-line {
    display: none;
  }

  .tech-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

  .stat-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .tech-metrics {
    grid-template-columns: 1fr;
  }

  .tech-flow {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb,
  .hero-scan,
  .hero-grid-move,
  .tech-chart-bar,
  .tech-flow-line,
  .live-dot,
  .cta-tech-glow,
  .tech-marquee-track,
  .tech-ring,
  .tech-panel-wrap .tech-panel,
  .ambient-particle,
  .category-card--tech,
  .category-card--tech::after,
  .feature-item--tech,
  .feature-item--tech i,
  .stat-card i,
  .tech-stream span,
  .hero-gradient,
  .tech-tags span,
  .tech-nodes span,
  .page-home .hero-tech,
  .page-home body.store-body::before,
  .page-home .btn-primary-store,
  .section-motion::before,
  .tech-flow-icon,
  .tech-blink {
    animation: none !important;
  }

  .tech-chart-bar {
    transition: none;
  }
}
