/* 100cr — Premium mobile + web platform showcase */

/* ——— Hero device stage ——— */
.hero-device-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 3rem;
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero-device-stage { min-height: 460px; padding: 1rem 0 3.5rem; }
}

.hero-stage-glow {
  position: absolute;
  width: 90%;
  height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.16) 0%, rgba(99, 102, 241, 0.06) 45%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Side-by-side: laptop (web) + phone (mobile) */
.devices-showcase {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .devices-showcase {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 1.25rem;
    max-width: 820px;
  }
}

@media (min-width: 1024px) {
  .devices-showcase {
    gap: 2rem;
    max-width: 900px;
  }
}

.device-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}

.device-unit--laptop {
  width: 100%;
  max-width: 480px;
  animation: floatLaptop 7s ease-in-out infinite;
}

.device-unit--phone {
  width: auto;
  flex-shrink: 0;
  animation: floatPhone 5s ease-in-out infinite;
}

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

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

.device-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.device-label span {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.75;
  padding-left: 0.35rem;
  border-left: 1px solid currentColor;
  margin-left: 0.15rem;
}

.device-label--web {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.device-label--mobile {
  color: #0369a1;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.device-frame {
  width: 100%;
}

.device-frame--laptop {
  width: 100%;
}

.device-frame--phone {
  width: auto;
}

.devices-sync-bridge {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-bottom: 4rem;
  color: var(--accent);
}

@media (min-width: 640px) {
  .devices-sync-bridge {
    display: flex;
    flex-shrink: 0;
    padding-bottom: 5.5rem;
  }
}

.devices-sync-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.45), transparent);
}

.devices-sync-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.devices-showcase--compact {
  max-width: 640px;
}

.devices-showcase--compact .device-unit--laptop {
  max-width: 360px;
}

.devices-showcase--compact .phone-premium {
  width: 130px;
}

.hero-laptop {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-sync-pill {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  white-space: nowrap;
}

.hero-sync-pill .sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: syncPing 2s ease-out infinite;
}

@keyframes syncPing {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-chip svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ——— Rich laptop mock ——— */
.laptop-shell {
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 0;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.05),
    0 24px 64px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.laptop-screen {
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 16 / 10;
}

.laptop-base {
  height: 12px;
  margin: 0 auto;
  width: 108%;
  margin-left: -4%;
  background: linear-gradient(180deg, #cbd5e1, #94a3b8);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 3px;
  background: #64748b;
  border-radius: 0 0 4px 4px;
}

/* Web app UI inside laptop */
.web-ui {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 200px;
  font-size: 10px;
}

.web-ui-topbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.web-ui-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.web-ui-dot:nth-child(1) { background: #f87171; }
.web-ui-dot:nth-child(2) { background: #fbbf24; }
.web-ui-dot:nth-child(3) { background: #4ade80; }

.web-ui-url {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 0 4px;
}

.web-ui-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 0;
}

.web-ui-nav {
  background: #fff;
  border-right: 1px solid #e2e8f0;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.web-ui-nav-item {
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
}

.web-ui-nav-item.active {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  width: 100%;
}

.web-ui-nav-item:nth-child(2) { width: 80%; }
.web-ui-nav-item:nth-child(3) { width: 65%; }

.web-ui-main {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
}

.web-ui-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.web-ui-kpi {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 5px 6px;
}

.web-ui-kpi label {
  display: block;
  font-size: 6px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.web-ui-kpi strong {
  font-size: 9px;
  font-weight: 800;
  color: #0f172a;
}

.web-ui-kpi.accent strong { color: #2563eb; }

.web-ui-chart-row {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  min-height: 52px;
}

.web-ui-bar {
  flex: 1;
  align-self: flex-end;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.web-ui-chart-row .web-ui-bar:nth-child(1) { height: 42%; opacity: 0.75; }
.web-ui-chart-row .web-ui-bar:nth-child(2) { height: 58%; }
.web-ui-chart-row .web-ui-bar:nth-child(3) { height: 78%; }
.web-ui-chart-row .web-ui-bar:nth-child(4) { height: 48%; opacity: 0.8; }
.web-ui-chart-row .web-ui-bar:nth-child(5) { height: 92%; }
.web-ui-chart-row .web-ui-bar:nth-child(6) { height: 68%; opacity: 0.9; }

.web-ui-table {
  display: grid;
  gap: 3px;
}

.web-ui-row {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 4px;
  align-items: center;
}

.web-ui-row span:first-child {
  height: 5px;
  background: #e2e8f0;
  border-radius: 2px;
}

.web-ui-row span:last-child {
  height: 5px;
  background: #cbd5e1;
  border-radius: 2px;
}

/* ——— Rich phone mock (portrait mobile, not tablet) ——— */
.phone-premium {
  width: 168px;
  margin: 0 auto;
  border-radius: 2.25rem;
  padding: 10px 8px 12px;
  background: linear-gradient(165deg, #334155 0%, #0f172a 55%, #020617 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 28px 56px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

@media (min-width: 640px) {
  .phone-premium { width: 188px; }
}

@media (min-width: 1024px) {
  .phone-premium { width: 200px; }
}

.phone-premium-screen {
  border-radius: 1.65rem;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.phone-premium-notch {
  width: 72px;
  height: 20px;
  background: #0f172a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  flex-shrink: 0;
}

.phone-premium-home {
  width: 36%;
  height: 4px;
  margin: 8px auto 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.phone-ui {
  padding: 8px 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.phone-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.phone-ui-header img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.phone-ui-greeting {
  font-size: 9px;
  font-weight: 700;
  color: #0f172a;
}

.phone-ui-greeting small {
  display: block;
  font-weight: 500;
  color: #94a3b8;
  font-size: 7px;
}

.phone-ui-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.phone-ui-mini-card {
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.phone-ui-mini-card.alt {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.phone-ui-mini-card label {
  font-size: 6px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-ui-mini-card strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #2563eb;
  margin-top: 2px;
}

.phone-ui-mini-card.alt strong { color: #0f172a; font-size: 10px; }

.phone-ui-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.phone-ui-action {
  text-align: center;
  padding: 6px 4px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 6px;
  font-weight: 600;
  color: #475569;
}

.phone-ui-action svg {
  display: block;
  margin: 0 auto 3px;
  width: 14px;
  height: 14px;
  color: #2563eb;
}

/* ——— Platforms showcase section ——— */
.platforms-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.platforms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(37, 99, 235, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(99, 102, 241, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  z-index: 0;
}

.platforms-section .container-page {
  position: relative;
  z-index: 1;
}

.platforms-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.platforms-sync {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto 2.5rem;
  padding: 0.6rem 1.25rem 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(8px);
}

.platforms-sync svg {
  animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Device composition in platforms section */
.platforms-composition {
  position: relative;
  max-width: 920px;
  margin: 0 auto 3.5rem;
  padding: 1rem 0.5rem 2rem;
}

.platforms-composition .devices-showcase {
  max-width: 100%;
}

.platforms-composition .device-unit--laptop,
.platforms-composition .device-unit--phone {
  animation: none;
}

@media (max-width: 639px) {
  .devices-showcase {
    gap: 1.5rem;
  }

  .device-unit--phone {
    order: -1;
  }

  .hero-device-stage {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-sync-pill {
    bottom: 0;
  }
}

/* Feature cards grid */
.platforms-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .platforms-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.platform-card {
  position: relative;
  padding: 0;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 24px 56px rgba(37, 99, 235, 0.12);
}

.platform-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.platform-card--web .platform-card-accent {
  background: linear-gradient(90deg, #2563eb, #6366f1);
}

.platform-card--mobile .platform-card-accent {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
}

.platform-card-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.platform-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.platform-card--web .platform-card-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(99, 102, 241, 0.08));
  color: #2563eb;
}

.platform-card--mobile .platform-card-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(37, 99, 235, 0.08));
  color: #0284c7;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.platform-card--web .platform-badge {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
}

.platform-card--mobile .platform-badge {
  color: #0369a1;
  background: rgba(14, 165, 233, 0.12);
}

.platform-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.platform-card > .platform-card-body > p,
.platform-card-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.platform-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.platform-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.platform-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
}

.platform-card--web .platform-cta.btn-cta {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.platform-card--mobile .platform-cta.btn-outline {
  border-color: rgba(37, 99, 235, 0.35);
  background: #fff;
}

.platform-card--mobile .platform-cta.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.platforms-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.platforms-footnote a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.platforms-footnote a:hover { text-decoration: underline; }

/* ——— Download page premium ——— */
.download-hero {
  position: relative;
  padding: 6rem 0 2rem;
  overflow: hidden;
}

.download-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.12), transparent),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.download-hero .container-page {
  position: relative;
  z-index: 1;
}

.download-device-preview {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 1rem 0 2rem;
  min-height: 280px;
}

.download-device-preview .devices-showcase {
  margin: 0 auto;
}

.get-started-grid {
  display: grid;
  gap: 2rem;
  margin-top: -1rem;
}

@media (min-width: 960px) {
  .get-started-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.get-started-card {
  position: relative;
  padding: 0;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(37, 99, 235, 0.12);
}

.get-started-card-top {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, transparent 100%);
}

.get-started-card--web .get-started-card-top {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, transparent 100%);
}

.get-started-card--mobile .get-started-card-top {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06) 0%, transparent 100%);
}

.get-started-card-mock {
  padding: 0 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

.get-started-card-footer {
  padding: 0 2rem 2rem;
}

.get-started-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.get-started-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.get-started-card--web .card-icon {
  background: linear-gradient(135deg, #2563eb, #6366f1);
  color: #fff;
}

.get-started-card--mobile .card-icon {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}

.store-badges-premium {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.store-badge-premium {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.store-badge-premium:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateX(4px);
}

.store-badge-premium svg {
  flex-shrink: 0;
  color: var(--text);
}

.store-badge-premium span {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

.store-badge-premium strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.compare-premium {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
