.cases {
  padding: var(--section-padding) 0;
  position: relative;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-image-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--transition-base);
}

.case-card:hover .case-image-real {
  transform: scale(1.05);
}

.case-image-shop {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.case-image-corporate {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.case-mockup-mini {
  width: 80%;
  max-width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}

.case-mockup-header {
  height: 24px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}

.case-mockup-header::before,
.case-mockup-header::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.case-mockup-content {
  padding: 16px;
}

.case-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.case-mockup-grid div {
  aspect-ratio: 1;
  background: #e2e8f0;
  border-radius: 4px;
}

.case-mockup-hero {
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 4px;
  margin-bottom: 12px;
}

.case-mockup-blocks {
  display: flex;
  gap: 8px;
}

.case-mockup-blocks div {
  flex: 1;
  height: 50px;
  background: #e2e8f0;
  border-radius: 4px;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-link {
  padding: 12px 24px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.case-link:hover {
  background: var(--primary-dark);
}

.case-card:hover .case-link {
  transform: translateY(0);
}

.case-content {
  padding: 24px;
}

.case-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.case-tag {
  padding: 4px 10px;
  background: var(--card-hover);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-tag-orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.case-tag-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.case-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.case-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-results {
  display: flex;
  gap: 24px;
}

.case-result {
  display: flex;
  flex-direction: column;
}

.case-result-value {
  font-size: 20px;
  font-weight: 800;
}

.case-result-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Case Detailed Metrics */
.case-metrics {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-top: 16px;
}

.case-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-metric:first-child {
  padding-top: 0;
}

.case-metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.case-metric-icon.conversion {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
  color: #10b981;
}

.case-metric-icon.traffic {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
  color: #3b82f6;
}

.case-metric-icon.roi {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  color: #f59e0b;
}

.case-metric-content {
  flex: 1;
  min-width: 0;
}

.case-metric-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.case-metric-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.case-metric-value .highlight {
  color: #10b981;
  font-weight: 700;
}

/* Premium Case Metrics */
.premium-case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.premium-case-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
}

.premium-case-metric-value {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.premium-case-metric-value.green {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-case-metric-value.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-case-metric-value.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-case-metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

.premium-case-metric-detail {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .premium-case-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Premium Cases Header */
.premium-cases-header {
  text-align: center;
  margin-bottom: 40px;
}

.premium-cases-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-cases-badge svg {
  width: 18px;
  height: 18px;
}

.premium-cases-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-secondary);
}

/* Premium Case Card */
.premium-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: var(--card);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.premium-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
}

.premium-case-vera {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
  border-color: rgba(16, 185, 129, 0.2);
}

.premium-case-vera::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.premium-case-maxlogistics {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
  border-color: rgba(99, 102, 241, 0.2);
}

.premium-case-maxlogistics::before {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.premium-case-maxbeton {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.02));
  border-color: rgba(201, 169, 98, 0.3);
}

.premium-case-maxbeton::before {
  background: linear-gradient(90deg, #c9a962, #a58a42);
}

.premium-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.premium-case-badge svg {
  width: 14px;
  height: 14px;
}

.premium-case-badge-purple {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
  border-color: rgba(99, 102, 241, 0.3);
  color: #818cf8;
}

.premium-case-badge-gold {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
  border-color: rgba(201, 169, 98, 0.3);
  color: #c9a962;
}

.premium-case-type {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.premium-case-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.premium-case-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.premium-case-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.premium-case-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
}

.premium-case-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-case-feature-icon svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.premium-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  color: white;
  transition: var(--transition-base);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.premium-case-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.premium-case-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.premium-case-cta-purple {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.premium-case-cta-purple:hover {
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.premium-case-cta-gold {
  background: linear-gradient(135deg, #c9a962, #a58a42);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.premium-case-cta-gold:hover {
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.premium-case-visual-left {
  order: -1;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup-frame {
  width: 280px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}

.phone-mockup-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0f172a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-mockup-screen {
  width: 100%;
  height: 560px;
  background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-mockup-scroll {
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  scrollbar-width: none;
}

.phone-mockup-scroll::-webkit-scrollbar {
  display: none;
}

.phone-mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.2), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* VERA App UI */
.vera-app {
  padding: 16px;
}

.vera-header {
  text-align: center;
  padding: 16px 0 20px;
}

.vera-date {
  font-size: 11px;
  color: #64748b;
}

.vera-day {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.vera-month {
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
}

.vera-ai-banner {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.vera-ai-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vera-ai-text {
  color: white;
}

.vera-ai-text strong {
  display: block;
  font-size: 13px;
}

.vera-ai-text span {
  font-size: 11px;
  opacity: 0.8;
}

.vera-prayer-times {
  background: white;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vera-prayer {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  color: #64748b;
  border-radius: 12px;
}

.vera-prayer-active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-weight: 600;
}

.vera-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.vera-module {
  background: white;
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vera-module span:first-child {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.vera-module span:last-child {
  font-size: 10px;
  color: #64748b;
}

.vera-quote {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vera-quote p {
  font-size: 13px;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.vera-quote span {
  font-size: 11px;
  color: #10b981;
  font-weight: 600;
}

/* Laptop Mockup */
.laptop-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-mockup-frame {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0;
  position: relative;
  z-index: 2;
}

.laptop-mockup-screen {
  width: 100%;
  height: 280px;
  background: #12121a;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.laptop-mockup-scroll {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.laptop-mockup-scroll::-webkit-scrollbar {
  display: none;
}

.laptop-mockup-base {
  width: 120%;
  max-width: 560px;
  height: 16px;
  background: linear-gradient(180deg, #334155, #1e293b);
  border-radius: 0 0 8px 8px;
  position: relative;
  z-index: 2;
}

.laptop-mockup-base::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #475569;
  border-radius: 2px;
}

.laptop-mockup-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.laptop-mockup-gold .laptop-mockup-frame {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.laptop-mockup-base-gold {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
}

.laptop-mockup-base-gold::before {
  background: #c9a962;
}

.laptop-mockup-glow-gold {
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.15), transparent 60%);
}

/* MaxLogistics App UI */
.maxlog-app {
  display: flex;
  height: 100%;
  background: #0a0a0f;
}

.maxlog-sidebar {
  width: 50px;
  background: #12121a;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.maxlog-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.maxlog-menu-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.maxlog-menu-item.active {
  background: rgba(99, 102, 241, 0.2);
  opacity: 1;
}

.maxlog-content {
  flex: 1;
  padding: 16px;
}

.maxlog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.maxlog-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.maxlog-user {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: white;
}

.maxlog-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.maxlog-stat {
  flex: 1;
  background: #1a1a24;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.maxlog-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: #6366f1;
  display: block;
}

.maxlog-stat-label {
  font-size: 8px;
  color: #64748b;
}

.maxlog-chart {
  background: #1a1a24;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.maxlog-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
}

.maxlog-chart-bars div {
  flex: 1;
  background: linear-gradient(180deg, #6366f1, #4f46e5);
  border-radius: 3px 3px 0 0;
}

.maxlog-table {
  background: #1a1a24;
  border-radius: 8px;
  overflow: hidden;
}

.maxlog-table-header {
  display: grid;
  grid-template-columns: 60px 1fr 70px;
  padding: 8px 10px;
  font-size: 9px;
  color: #64748b;
  border-bottom: 1px solid #252530;
}

.maxlog-table-row {
  display: grid;
  grid-template-columns: 60px 1fr 70px;
  padding: 8px 10px;
  font-size: 10px;
  color: white;
  border-bottom: 1px solid #252530;
}

.maxlog-table-row:last-child {
  border-bottom: none;
}

.status-green {
  color: #10b981;
  font-weight: 600;
}

.status-yellow {
  color: #f59e0b;
  font-weight: 600;
}

/* MAXBETON App UI */
.maxbeton-app {
  display: flex;
  height: 100%;
  background: #0d0d0d;
}

.maxbeton-sidebar {
  width: 50px;
  background: #131313;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(201, 169, 98, 0.1);
}

.maxbeton-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #c9a962, #a58a42);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 12px;
}

.maxbeton-menu-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.5;
}

.maxbeton-menu-item.active {
  background: rgba(201, 169, 98, 0.15);
  opacity: 1;
}

.maxbeton-content {
  flex: 1;
  padding: 16px;
}

.maxbeton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.maxbeton-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fafafa;
}

.maxbeton-date {
  font-size: 10px;
  color: #c9a962;
}

.maxbeton-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.maxbeton-stat {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.maxbeton-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: #c9a962;
  display: block;
}

.maxbeton-stat-label {
  font-size: 8px;
  color: #a0a0a0;
}

.maxbeton-orders {
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 8px;
}

.maxbeton-order {
  display: grid;
  grid-template-columns: 60px 50px 1fr;
  padding: 10px 12px;
  font-size: 10px;
  color: #fafafa;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.maxbeton-order:last-child {
  border-bottom: none;
}

.maxbeton-order-id {
  color: #c9a962;
  font-weight: 600;
}

.maxbeton-order-vol {
  color: #a0a0a0;
}

.maxbeton-order-status {
  text-align: right;
  color: #10b981;
}

/* Cases CTA */
.cases-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  margin-top: 32px;
}

.cases-cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cases Responsive */
@media (max-width: 1200px) {
  .premium-case {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }
  
  .premium-case-visual-left {
    order: 0;
  }
  
  .phone-mockup-frame {
    width: 240px;
  }
  
  .phone-mockup-screen {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-case {
    padding: 24px;
  }
  
  .premium-case-features {
    gap: 8px;
  }
  
  .phone-mockup-frame {
    width: 200px;
  }
  
  .phone-mockup-screen {
    height: 400px;
  }
  
  .laptop-mockup-screen {
    height: 200px;
  }
}

/* VERA additional styles */
.vera-saint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(217, 119, 6, 0.05));
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(234, 179, 8, 0.15);
}
.vera-saint-icon {
  font-size: 20px;
}
.vera-saint-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vera-saint-text strong {
  font-size: 10px;
  color: #f59e0b;
}
.vera-saint-text span {
  font-size: 9px;
  color: #d1d5db;
}
.vera-section-label {
  font-size: 9px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.vera-fasting {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.vera-fasting-icon {
  font-size: 18px;
}
.vera-fasting-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vera-fasting-text strong {
  font-size: 10px;
  color: #10b981;
}
.vera-fasting-text span {
  font-size: 9px;
  color: #d1d5db;
}
