/* ============================================
   UnityEdge Enterprises - Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  /* Core Palette - Warm Neutral with Emerald Accent */
  --bg-base: #faf9f7;
  --bg-elevated: #ffffff;
  --bg-surface: #f5f3f0;
  --bg-surface-hover: #eeedea;
  --bg-inset: #eae8e4;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #737373;
  --text-muted: #999999;
  --text-inverse: #ffffff;

  /* Accent - Emerald with warm undertone */
  --accent-emerald: #0d9488;
  --accent-emerald-light: #14b8a6;
  --accent-emerald-dark: #0f766e;
  --accent-emerald-muted: rgba(13, 148, 136, 0.08);
  --accent-emerald-glow: rgba(13, 148, 136, 0.15);

  /* Secondary Accent - Warm Amber */
  --accent-amber: #d97706;
  --accent-amber-light: #f59e0b;
  --accent-amber-muted: rgba(217, 119, 6, 0.08);

  /* Borders */
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.15);
  --border-accent: rgba(13, 148, 136, 0.2);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #faf9f7 0%, #f0eeea 50%, #e8e5e0 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(250,249,247,0.4) 100%);
  --gradient-accent: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --gradient-warm: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

  /* Shadows - Soft, diffused */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 24px rgba(13, 148, 136, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography Scale */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-base);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ============================================
   Ambient Background
   ============================================ */

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.orb-top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb-bottom {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   Layout
   ============================================ */

.ue-container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-padded {
  padding: 6rem 0;
}

.section-contrast {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ============================================
   Header
   ============================================ */

.ue-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(250, 249, 247, 0.85);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-suffix {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Primary Navigation */
.primary-nav {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent-emerald);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ============================================
   Buttons
   ============================================ */

.ue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
}

.ue-btn-primary {
  background: var(--gradient-accent);
  color: var(--text-inverse);
  border: none;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.ue-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.ue-btn-primary:active {
  transform: translateY(0);
}

.ue-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.ue-btn-outline:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald-dark);
  background: var(--accent-emerald-muted);
}

.ue-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.ue-btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-medium);
}

.ue-btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

.ue-btn.full {
  width: 100%;
}

/* Badge */
.ue-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 0.4rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--accent-emerald);
  color: var(--text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  padding: 5rem 0 6rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--accent-emerald-muted);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-emerald-dark);
  margin-bottom: 1.5rem;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

.headline-accent {
  color: var(--accent-emerald);
}

.hero-description {
  max-width: 520px;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-medium);
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.visual-dots {
  display: flex;
  gap: 0.35rem;
}

.visual-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.visual-dots span:nth-child(1) { background: #ef4444; }
.visual-dots span:nth-child(2) { background: #f59e0b; }
.visual-dots span:nth-child(3) { background: #22c55e; }

.visual-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-tertiary);
}

.visual-body {
  padding: 1.25rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.metric-name {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.progress-track {
  height: 6px;
  background: var(--bg-inset);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-elevated);
  margin-left: -6px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-inset);
  color: var(--text-tertiary);
  font-size: 0.6rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-elevated);
  margin-left: -6px;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-header-split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-emerald);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

/* ============================================
   Features Grid
   ============================================ */

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

.feature-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-emerald-muted);
  color: var(--accent-emerald);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.feature-tile h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-tile p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-tertiary);
}

/* ============================================
   Products Grid
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-accent);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .card-accent {
  opacity: 1;
}

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

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-emerald-muted);
  color: var(--accent-emerald);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-tagline {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.product-features li i {
  color: var(--accent-emerald);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 4rem 0;
}

.cta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.cta-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  max-width: 500px;
}

.cta-content p {
  max-width: 480px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
}

.cta-decoration {
  position: relative;
  width: 200px;
  height: 200px;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}

.deco-ring:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  animation: rotate-slow 20s linear infinite;
}

.deco-ring:nth-child(2) {
  width: 140px;
  height: 140px;
  top: 30px;
  left: 30px;
  animation: rotate-slow 15s linear infinite reverse;
}

.deco-ring:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 60px;
  border-color: var(--accent-emerald);
  opacity: 0.3;
  animation: rotate-slow 10s linear infinite;
}

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

/* ============================================
   Trusted Section
   ============================================ */

.trusted-section {
  padding: 4rem 0;
}

.trusted-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trusted-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-emerald);
  margin-bottom: 0.75rem;
}

.trusted-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.trusted-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trusted-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.trusted-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.trusted-logo.jazzcash {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.trusted-logo.easypaisa {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.trusted-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.trusted-info p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
  padding: 5rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-base);
}

.process-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-emerald);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-tile h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-tile p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-tertiary);
}

/* ============================================
   Footer
   ============================================ */

.ue-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-col {
  max-width: 300px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-symbol {
  width: 36px;
  height: 36px;
}

.footer-brand .brand-name {
  font-size: 1.05rem;
}

.footer-brand .brand-suffix {
  font-size: 0.65rem;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--accent-emerald);
  border-color: var(--accent-emerald);
  background: var(--accent-emerald-muted);
}

/* ============================================
   Floating Cart
   ============================================ */

.floating-cart-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
  cursor: pointer;
  z-index: 120;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.floating-cart-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.floating-cart-btn .ue-badge {
  position: absolute;
  top: -4px;
  right: -4px;
}

/* ============================================
   Overlay & Drawer
   ============================================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 130;
}

.hidden {
  display: none !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-elevated);
  color: var(--text-primary);
  z-index: 140;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.icon-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
}

.icon-close:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  background: var(--accent-emerald-muted);
}

.drawer-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  overflow: auto;
}

.empty-cart {
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.empty-cart i {
  font-size: 1.8rem;
  color: var(--text-muted);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.empty-cart p {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.empty-cart small {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  background: var(--bg-surface);
  transition: border-color var(--transition-fast);
}

.cart-item:hover {
  border-color: var(--border-accent);
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.cart-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.item-total {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  grid-column: 2;
  text-align: right;
}

.qty-control {
  display: inline-flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elevated);
}

.qty-control button {
  width: 30px;
  border: 0;
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.qty-control button:hover {
  background: var(--accent-emerald-muted);
  color: var(--accent-emerald);
}

.qty-control span {
  min-width: 32px;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* Related Panel */
.related-panel {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.related-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.related-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.related-badge {
  min-width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: inline-grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  background: var(--gradient-accent);
}

.related-grid {
  display: grid;
  gap: 0.6rem;
  max-height: 320px;
  overflow: auto;
  padding-right: 0.25rem;
}

.related-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  transition: border-color var(--transition-fast);
}

.related-card:hover {
  border-color: var(--border-accent);
}

.related-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--accent-emerald);
  background: var(--accent-emerald-muted);
  font-size: 0.9rem;
}

.related-info h5 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.related-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.related-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.related-footer strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Drawer Footer */
.drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

/* ============================================
   Checkout Modal
   ============================================ */

.modal-wrap {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.checkout-modal {
  width: min(540px, 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
}

.form-layout {
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: span 2;
}

.form-field span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-field input {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  font: inherit;
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-field input:focus {
  outline: none;
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px var(--accent-emerald-glow);
  background: var(--bg-elevated);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
    justify-content: flex-start;
  }

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

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

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

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

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }

  .hero-section {
    padding: 3rem 0 4rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .features-grid,
  .products-grid,
  .process-grid,
  .footer-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: span 1;
  }

  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-padded {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .ue-btn {
    width: 100%;
  }

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

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   Selection
   ============================================ */

::selection {
  background: rgba(13, 148, 136, 0.2);
  color: var(--text-primary);
}
