/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
  --bg: #fafbfe;
  --bg-soft: #f5f7fb;
  --foreground: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --accent: #7c3aed;
  --artist-cyan: #0891b2;
  --artist-pink: #db2777;
  --border: #e2e8f0;
  --card: #ffffff;
  --success: #22c55e;
  --chip-bg: #f3f1ff;
  --chip-text: #4338ca;
  --chip-border: #d8d4ff;
  
  --gradient-brand: linear-gradient(135deg, #2563eb 0%, #6d28d9 58%, #be185d 125%);
  --gradient-brand-hover: linear-gradient(135deg, #1d4ed8 0%, #5b21b6 58%, #9d174d 125%);
  --gradient-soft: linear-gradient(145deg, #f7f7ff 0%, #f1f0ff 48%, #f3f9ff 100%);
  
  --shadow-sm: 0 2px 8px rgba(79, 70, 229, 0.08);
  --shadow-md: 0 8px 24px rgba(79, 70, 229, 0.12);
  --shadow-lg: 0 16px 48px rgba(79, 70, 229, 0.16);
  --shadow-xl: 0 24px 64px rgba(79, 70, 229, 0.2);
  --shadow-glow: 0 0 60px rgba(109, 40, 217, 0.28);
  
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ========================================
   Utilities
   ======================================== */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-inline: 1rem;
}

.text-gradient {
  color: var(--primary);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--chip-bg);
  color: var(--chip-text);
  border: 1px solid var(--chip-border);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-brand {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-brand:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-ghost {
  background: white;
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.pricing-claim-button {
  width: 100%;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: none;
}

.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.brand-text {
  font-size: 20px;
}

@media (min-width: 480px) {
  .brand-text {
    display: inline;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  padding: 0.375rem;
  border-radius: var(--radius-full);
}

.nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--primary);
  color: white;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .navbar-cta {
    display: flex;
  }
  .hamburger {
    display: none !important;
  }
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--bg-soft);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu .inner {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: white;
  color: var(--foreground);
  font-weight: 600;
  transition: all 0.2s ease;
  min-height: 48px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.mobile-menu .cta-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.mobile-menu .cta-row .btn {
  flex: 1;
  padding: 0.875rem;
  min-height: 48px;
}


/* ========================================
   Hero Stage — Upgrade Comparison
   ======================================== */
.hero-stage {
  max-width: 880px;
  margin: 0 auto 2.5rem;
}

.upgrade-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.cmp-premium-stack {
  position: relative;
  min-width: 0;
}

.cmp-premium-stack > .cmp-card:not(.cmp-admin) {
  height: 100%;
}

@media (min-width: 820px) {
  .upgrade-compare {
    grid-template-columns: 1fr auto 1fr;
  }

  .cmp-premium-stack {
    grid-column: 3;
  }
}

.cmp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cmp-tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.cmp-old .cmp-tag {
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--border);
}

.cmp-new .cmp-tag {
  background: var(--chip-bg);
  color: var(--chip-text);
  border: 1px solid var(--chip-border);
}

.cmp-new {
  --spotlight-x: 50%;
  --spotlight-y: 24%;
  --spotlight-opacity: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(79, 70, 229, 0.3);
  background:
    radial-gradient(circle at 92% 8%, rgba(219, 39, 119, 0.11), transparent 10rem),
    radial-gradient(circle at 5% 92%, rgba(8, 145, 178, 0.1), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 245, 255, 0.98));
  box-shadow: 0 22px 60px rgba(79, 70, 229, 0.18), 0 0 0 4px rgba(79, 70, 229, 0.04);
}

.cmp-new::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.11) 1px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 42%);
}

.cmp-new-heading,
.cmp-new .cmp-world,
.cmp-new .cmp-caption {
  position: relative;
  z-index: 2;
}

.cmp-spotlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  transform: translateZ(0);
}

.cmp-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(79, 70, 229, 0.82);
  box-shadow: inset 0 0 42px rgba(79, 70, 229, 0.22), 0 0 34px rgba(79, 70, 229, 0.34);
  opacity: var(--spotlight-opacity);
  transition: opacity 0.2s ease;
}

.cmp-spotlight::after {
  content: '';
  position: absolute;
  left: var(--spotlight-x);
  top: var(--spotlight-y);
  width: 330px;
  height: 330px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(67, 56, 202, 0.34) 0%,
    rgba(79, 70, 229, 0.22) 30%,
    rgba(96, 165, 250, 0.12) 52%,
    transparent 74%
  );
  filter: blur(5px);
  mix-blend-mode: multiply;
  box-shadow: 0 0 42px rgba(79, 70, 229, 0.18);
  opacity: var(--spotlight-opacity);
  transition: opacity 0.2s ease;
}

.cmp-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cmp-particles i {
  --particle-x: 5px;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.62);
  opacity: 0.2;
  animation: cmpParticleFloat 4.8s ease-in-out infinite;
}

.cmp-particles i:nth-child(1) { top: 12%; left: 7%; animation-delay: -0.4s; }
.cmp-particles i:nth-child(2) { top: 8%; right: 10%; --particle-x: -5px; background: #f472b6; animation-delay: -1.8s; }
.cmp-particles i:nth-child(3) { top: 34%; left: 2%; width: 4px; height: 4px; background: #22d3ee; animation-delay: -2.7s; }
.cmp-particles i:nth-child(4) { top: 43%; right: 3%; --particle-x: -7px; background: #a78bfa; animation-delay: -3.5s; }
.cmp-particles i:nth-child(5) { bottom: 34%; left: 6%; width: 3px; height: 3px; background: #fbbf24; animation-delay: -1.1s; }
.cmp-particles i:nth-child(6) { bottom: 20%; right: 8%; --particle-x: -4px; background: #34d399; animation-delay: -2.2s; }
.cmp-particles i:nth-child(7) { top: 62%; left: 47%; width: 3px; height: 3px; background: #f472b6; animation-delay: -4.1s; }
.cmp-particles i:nth-child(8) { top: 25%; left: 58%; --particle-x: -3px; background: #60a5fa; animation-delay: -0.9s; }
.cmp-particles i:nth-child(9) { bottom: 8%; left: 28%; background: #c084fc; animation-delay: -3.1s; }
.cmp-particles i:nth-child(10) { bottom: 11%; right: 30%; width: 3px; height: 3px; background: #22d3ee; animation-delay: -1.5s; }

@keyframes cmpParticleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.72); opacity: 0.18; }
  50% { transform: translate3d(var(--particle-x), -10px, 0) scale(1.28); opacity: 0.72; }
}

.cmp-new:hover,
.cmp-new.spotlight-active {
  --spotlight-opacity: 1;
}

.cmp-new:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 28px 72px rgba(79, 70, 229, 0.24), 0 0 0 5px rgba(79, 70, 229, 0.05);
}

.cmp-new-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.cmp-new-heading .cmp-tag {
  margin-bottom: 0;
}

.cmp-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #6d28d9;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(124, 58, 237, 0.24);
}

.cmp-caption {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

.cmp-caption strong {
  color: var(--foreground);
}

/* old: the anonymous link list */
.cmp-linklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0 0.5rem;
}

.cmp-linklist .cmp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  margin-bottom: 0.25rem;
}

.cmp-linklist .cmp-link {
  width: 85%;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted-light);
}

/* new: the real website preview */
.cmp-world {
  position: relative;
  padding: 0 0 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.11);
}

.cmp-browser-bar {
  min-height: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
  background: linear-gradient(90deg, #f8f7ff, #f2f8ff);
}

.cmp-browser-dots {
  display: flex;
  gap: 3px;
}

.cmp-browser-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fda4af;
}

.cmp-browser-dots i:nth-child(2) { background: #fde68a; }
.cmp-browser-dots i:nth-child(3) { background: #86efac; }

.cmp-domain {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
}

.cmp-domain svg {
  width: 9px;
  height: 9px;
  color: #16a34a;
}

.cmp-browser-action {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
}

.cmp-world .cmp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0.7rem 0.65rem 0.625rem;
}

.cmp-world .cmp-brandmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
}

.cmp-world .cmp-brandmark i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  flex: none;
}

.cmp-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
}

.cmp-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: cmpPulse 1.8s infinite;
}

@keyframes cmpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  55% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.cmp-world .cmp-art {
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0 0.65rem 0.75rem;
}

.cmp-world .mini-site {
  --mini-bg: #eff6ff;
  --mini-ink: #3730a3;
  --mini-accent: #6366f1;
  --mini-soft: #c7d2fe;
  flex: 1;
  height: 64px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--mini-bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cmp-world .mini-site--one {
  --mini-bg: #fff4f7;
  --mini-ink: #881337;
  --mini-accent: #e11d48;
  --mini-soft: #fda4af;
}

.cmp-world .mini-site--two {
  --mini-bg: #f4f1ff;
  --mini-ink: #4c1d95;
  --mini-accent: #7c3aed;
  --mini-soft: #c4b5fd;
  transform: translateY(-4px);
}

.cmp-world .mini-site--three {
  --mini-bg: #ecfeff;
  --mini-ink: #164e63;
  --mini-accent: #0891b2;
  --mini-soft: #67e8f9;
}

.mini-site .mini-nav {
  min-height: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-site .mini-logo {
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: var(--mini-ink);
}

.mini-site .mini-links {
  display: flex;
  gap: 2px;
}

.mini-site .mini-links i {
  width: 5px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--mini-ink);
  opacity: 0.42;
}

.mini-site .mini-hero {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3px;
}

.mini-site .mini-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.mini-site .mini-copy i {
  display: block;
  width: 90%;
  height: 2px;
  border-radius: 999px;
  background: var(--mini-ink);
  opacity: 0.75;
}

.mini-site .mini-copy i:nth-child(2) {
  width: 62%;
  opacity: 0.34;
}

.mini-site .mini-copy b {
  display: block;
  width: 14px;
  height: 4px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--mini-accent);
}

.mini-site .mini-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--mini-soft), var(--mini-accent));
}

.mini-site .mini-portrait::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.mini-site .mini-portrait::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 13px;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.86);
}

.mini-site .mini-gallery {
  height: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mini-site .mini-gallery i {
  border-radius: 2px;
  background: linear-gradient(135deg, var(--mini-soft), var(--mini-accent));
}

.mini-site .mini-gallery i:nth-child(2) {
  background: linear-gradient(135deg, var(--mini-accent), var(--mini-ink));
  opacity: 0.72;
}

.mini-site .mini-gallery i:nth-child(3) {
  background: linear-gradient(135deg, #ffffff, var(--mini-soft));
}

.cmp-world .cmp-cta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.65rem;
}

.cmp-world .cmp-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  background: var(--primary);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  box-shadow: var(--shadow-sm);
}

.cmp-new .cmp-btn {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  animation: cmpButtonGlow 3.2s ease-in-out infinite;
}

.cmp-new .cmp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.52) 50%, transparent 80%);
  animation: cmpButtonShine 4.2s ease-in-out infinite;
}

@keyframes cmpButtonGlow {
  0%, 100% { box-shadow: 0 5px 14px rgba(79, 70, 229, 0.2); }
  50% { box-shadow: 0 7px 22px rgba(109, 40, 217, 0.42); }
}

@keyframes cmpButtonShine {
  0%, 55% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

.cmp-world .cmp-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
}

.cmp-value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0.7rem 0.65rem 0;
}

.cmp-value-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.2rem;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f7f6ff);
  color: var(--foreground);
  font-size: 0.58rem;
  font-weight: 750;
  text-align: center;
}

.cmp-value-item svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cmp-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  margin: 0.6rem 0.65rem 0;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 10px;
  background: #f8f8ff;
  box-shadow: 0 5px 14px rgba(49, 46, 129, 0.06);
}

.cmp-player-record {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #202036 0 2px, #111122 3px 4px);
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.22);
  animation: cmpRecordSpin 7s linear infinite;
}

.cmp-player-record::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 3px #c7d2fe;
}

.cmp-player-record::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
}

.cmp-player-copy {
  min-width: 0;
}

.cmp-player-copy small,
.cmp-player-copy strong {
  display: block;
}

.cmp-player-copy small {
  color: var(--primary);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cmp-player-copy strong {
  overflow: hidden;
  margin-top: 0.08rem;
  color: var(--foreground);
  font-size: 0.65rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cmp-player-progress {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.cmp-player-progress span {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe3ef;
}

.cmp-player-progress span::after {
  content: '';
  position: absolute;
  inset: 0 42% 0 0;
  border-radius: inherit;
  background: var(--primary);
}

.cmp-player-progress time {
  color: #64748b;
  font-size: 0.44rem;
  font-style: normal;
  white-space: nowrap;
}

.cmp-player-play {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: white;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 5px 12px rgba(79, 70, 229, 0.24);
}

.cmp-player-play svg {
  width: 11px;
  height: 11px;
  margin-left: 1px;
  fill: currentColor;
}

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

.cmp-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.65rem 0.65rem 0;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(79, 70, 229, 0.18);
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.cmp-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cmp-proof-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.cmp-new .cmp-caption {
  margin-top: 0.875rem;
  padding: 0.8rem 0.875rem;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
}

/* Smaller second half of the package: the customer's private control page */
.cmp-admin {
  position: absolute;
  top: 28%;
  right: -0.5rem;
  z-index: 5;
  width: 255px;
  max-width: none;
  padding: 0.9rem;
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 38px rgba(49, 46, 129, 0.13), 0 0 0 3px rgba(79, 70, 229, 0.035);
  transform: scale(0.62) rotate(8deg);
  transform-origin: top right;
}

.cmp-admin::before {
  opacity: 0.55;
  background-size: 18px 18px;
}

.cmp-admin:hover {
  transform: translateY(-3px) scale(0.65) rotate(6deg);
  box-shadow: 0 22px 48px rgba(49, 46, 129, 0.18), 0 0 0 4px rgba(79, 70, 229, 0.05);
}

.cmp-admin-heading,
.cmp-admin-title,
.admin-window,
.admin-flow {
  position: relative;
  z-index: 2;
}

.cmp-admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.cmp-admin-heading .cmp-tag {
  margin: 0;
}

.cmp-admin-sync {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #166534;
  font-size: 0.625rem;
  font-weight: 800;
  white-space: nowrap;
}

.cmp-admin-sync i,
.admin-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.cmp-admin-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.cmp-admin-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 10px;
  background: var(--chip-bg);
}

.cmp-admin-icon svg {
  width: 19px;
  height: 19px;
}

.cmp-admin-title small,
.cmp-admin-title strong {
  display: block;
}

.cmp-admin-title small {
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cmp-admin-title strong {
  margin-top: 0.05rem;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.2;
}

.admin-window {
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.17);
  border-radius: 12px;
  background: #f8f9ff;
  box-shadow: 0 8px 20px rgba(49, 46, 129, 0.08);
}

.admin-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding: 0 0.55rem;
  color: #64748b;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  background: white;
  font-size: 0.55rem;
  font-weight: 700;
}

.admin-dots {
  display: flex;
  gap: 3px;
}

.admin-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c7d2fe;
}

.admin-layout {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 154px;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-right: 1px solid rgba(79, 70, 229, 0.1);
  background: #eef0ff;
}

.admin-sidebar i {
  width: 14px;
  height: 4px;
  border-radius: 99px;
  background: #c7d2fe;
}

.admin-sidebar i:first-child {
  width: 17px;
  height: 17px;
  margin-bottom: 0.15rem;
  border-radius: 5px;
  background: var(--primary);
}

.admin-panel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  align-self: flex-start;
  margin-bottom: 0.05rem;
  color: #166534;
  font-size: 0.55rem;
  font-weight: 800;
}

.admin-status i {
  width: 5px;
  height: 5px;
}

.admin-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
  padding: 0 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: white;
}

.admin-field b {
  color: #475569;
  font-size: 0.52rem;
}

.admin-field > i {
  width: 33px;
  height: 4px;
  border-radius: 99px;
  background: #dbe1ec;
}

.admin-field em {
  position: relative;
  width: 22px;
  height: 12px;
  border-radius: 99px;
  background: #22c55e;
}

.admin-field em::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.admin-save {
  align-self: flex-end;
  margin-top: 0.1rem;
  padding: 0.3rem 0.55rem;
  color: white;
  border-radius: 5px;
  background: var(--primary);
  font-size: 0.5rem;
  font-weight: 800;
}

.admin-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-top: 0.7rem;
  color: #4338ca;
  font-size: 0.625rem;
  font-weight: 800;
}

.admin-flow svg {
  width: 24px;
  height: 12px;
}

.cmp-admin .cmp-caption {
  margin-top: 0.7rem;
  padding: 0.7rem;
  font-size: 0.72rem;
}

@media (max-width: 819px) {
  .cmp-admin {
    top: 28%;
    right: -0.35rem;
    width: 255px;
    transform: scale(0.62) rotate(8deg);
  }

  .cmp-admin:hover {
    transform: translateY(-3px) scale(0.65) rotate(6deg);
  }
}

@media (min-width: 820px) and (max-width: 1099px) {
  .cmp-admin {
    top: 27%;
    right: -1.5rem;
    width: 270px;
    transform: scale(0.66) rotate(8deg);
    transform-origin: top right;
  }

  .cmp-admin:hover {
    transform: translateY(-4px) scale(0.69) rotate(6deg);
  }
}

@media (min-width: 1100px) {
  .cmp-admin {
    top: 26%;
    right: -3rem;
    width: 280px;
    transform: scale(0.68) rotate(9deg);
    transform-origin: top right;
  }

  .cmp-admin:hover {
    transform: translateY(-5px) scale(0.71) rotate(6.5deg);
  }
}

.cmp-arrow {
  align-self: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  background: var(--primary);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.cmp-arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 819px) {
  .cmp-arrow svg { transform: rotate(90deg); }
}

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

   ======================================== */
.hero {
  padding: 7rem 0 4rem;
  background: #f0f4ff;
  position: relative;
  overflow: hidden;
}

.hero .center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.7;
}

.hero p strong {
  color: var(--foreground);
}

.hero .actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero .tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.tech-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.stat {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.stat .big {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat small {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ========================================
   Section Base
   ======================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.75rem 0;
  letter-spacing: -0.01em;
}

.section .lead {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
  padding: 0 1rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: #f8f9ff;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.08) 1px, transparent 1.2px);
  background-size: 24px 24px;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 18%, rgba(79, 70, 229, 0.09), transparent 20rem);
}

.about-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(49, 46, 129, 0.11);
}

.about-visual {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.13);
  border-radius: 22px;
  background-color: #eef0ff;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.13) 1px, transparent 1.2px);
  background-size: 18px 18px;
}

.about-code-card {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  width: min(82%, 310px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: #17172a;
  box-shadow: 0 20px 38px rgba(23, 23, 42, 0.24);
  transform: rotate(-2deg);
}

.about-code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 0.75rem;
  color: #a5b4fc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
}

.about-code-dots {
  display: flex;
  gap: 4px;
}

.about-code-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
}

.about-code-dots i:nth-child(2) { opacity: 0.65; }
.about-code-dots i:nth-child(3) { opacity: 0.35; }

.about-code-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.25rem 1rem 1.4rem;
  color: #e2e8f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.about-code-body b {
  color: #a5b4fc;
  font-weight: 700;
}

.about-code-body em {
  color: #67e8f9;
  font-style: normal;
}

.about-code-body .about-code-indent {
  padding-left: 1.15rem;
  color: #f0abfc;
}

.about-purpose-card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.35rem;
  width: min(70%, 235px);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 15px;
  background: white;
  box-shadow: 0 16px 32px rgba(49, 46, 129, 0.15);
  transform: rotate(2.5deg);
}

.about-purpose-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--primary);
  border-radius: 11px;
  background: var(--chip-bg);
}

.about-purpose-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-purpose-card small,
.about-purpose-card strong {
  display: block;
}

.about-purpose-card small {
  color: var(--primary);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-purpose-card strong {
  margin-top: 0.15rem;
  color: var(--foreground);
  font-size: 0.78rem;
  line-height: 1.35;
}

.about-copy .chip {
  margin-bottom: 1rem;
}

.about-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.about-lead {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.about-story {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-story + .about-story {
  margin-top: 0.75rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.about-values span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-full);
  background: #f7f7ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-values i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 760px) {
  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 235px;
  }

  .about-code-card {
    top: 1.35rem;
    left: 1rem;
  }

  .about-purpose-card {
    right: 0.85rem;
    bottom: 1rem;
  }
}

/* ========================================
   Pricing Story Section
   ======================================== */
.pricing-story-section {
  position: relative;
  overflow: hidden;
  background-color: #f8f9ff;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.075) 1px, transparent 1.2px);
  background-size: 24px 24px;
}

.pricing-story-wrap {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.pricing-story-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pricing-story-intro h2 { margin: 0.85rem 0 1rem; }
.pricing-story-intro .lead { max-width: 720px; }

.pricing-story-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.pricing-story-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

.pricing-story-card--artist {
  border-color: rgba(219, 39, 119, 0.16);
  background: #fffafb;
}

.pricing-story-card--website {
  border-color: rgba(79, 70, 229, 0.24);
  background: #f8f8ff;
  box-shadow: 0 22px 52px rgba(79, 70, 229, 0.14);
}

.pricing-story-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-story-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.pricing-story-card--artist .pricing-story-label { color: #be185d; }

.pricing-story-card h3 {
  margin-bottom: 0.65rem;
  color: var(--foreground);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.25;
}

.pricing-story-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.commission-menu {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0;
}

.commission-menu span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(219, 39, 119, 0.12);
  border-radius: 10px;
  background: white;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 700;
}

.commission-menu strong { color: #9d174d; font-size: 0.92rem; }

.pricing-story-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(100, 116, 139, 0.24);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-story-time strong { color: var(--foreground); }

.pricing-story-connector {
  align-self: center;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.22);
}

.pricing-story-connector svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(79, 70, 229, 0.12);
  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
}

.website-price-row strong {
  color: var(--foreground);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.website-price-row span { color: var(--primary); font-size: 0.78rem; font-weight: 800; }

.website-work-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.website-work-list span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.55rem 0.6rem;
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 9px;
  background: white;
  font-size: 0.68rem;
  font-weight: 750;
}

.website-work-list i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-story-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 20px;
  background: #111827;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.pricing-story-note p {
  max-width: 780px;
  color: #dbeafe;
  font-size: 0.92rem;
  line-height: 1.75;
}

.pricing-story-note strong { color: white; }

.pricing-story-note-callout {
  max-width: 220px;
  color: #c7d2fe;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

@media (max-width: 760px) {
  .pricing-story-compare { grid-template-columns: 1fr; }
  .pricing-story-connector { justify-self: center; transform: rotate(90deg); }
  .pricing-story-note { grid-template-columns: 1fr; }
  .pricing-story-note-callout { max-width: none; text-align: left; }
}

@media (max-width: 430px) {
  .website-work-list { grid-template-columns: 1fr; }
}

/* Story-led pricing layout */
.pricing-story-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(49, 46, 129, 0.11);
}

.pricing-story-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: 22px;
  background-color: #f0f1ff;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.13) 1px, transparent 1.2px);
  background-size: 18px 18px;
}

.creative-art-card,
.website-build-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 38px rgba(49, 46, 129, 0.16);
}

.creative-art-card {
  top: 1.35rem;
  left: 1.15rem;
  width: min(78%, 300px);
  padding: 0.85rem;
  transform: rotate(-2deg);
}

.creative-card-top,
.website-build-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.creative-card-top strong,
.website-build-top strong {
  color: var(--foreground);
  font-size: 0.72rem;
}

.creative-card-top span,
.website-build-top span {
  color: var(--primary);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.creative-canvas {
  position: relative;
  height: 118px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff0f6;
  box-shadow: inset 0 0 0 1px rgba(219, 39, 119, 0.1);
}

.creative-canvas svg {
  width: 100%;
  height: 100%;
}

.creative-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  margin-top: 0.65rem;
}

.creative-steps span {
  padding: 0.35rem 0.15rem;
  color: #9d174d;
  border: 1px solid rgba(219, 39, 119, 0.1);
  border-radius: 6px;
  background: #fff7fa;
  font-size: 0.48rem;
  font-weight: 800;
  text-align: center;
}

.pricing-process-bridge {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  color: white;
  border-radius: var(--radius-full);
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.22);
  font-size: 0.58rem;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(-2deg);
  white-space: nowrap;
}

.pricing-process-bridge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-build-card {
  right: 1.1rem;
  bottom: 1.25rem;
  width: min(74%, 285px);
  padding: 0.85rem;
  transform: rotate(2.5deg);
}

.website-build-price {
  color: var(--primary) !important;
  font-size: 1.15rem !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

.website-build-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  padding: 0.55rem 0.6rem;
  color: #475569;
  border: 1px solid rgba(79, 70, 229, 0.11);
  border-radius: 8px;
  background: #f8f8ff;
  font-size: 0.58rem;
  font-weight: 750;
}

.website-build-time strong {
  color: var(--foreground);
}

.website-build-tasks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

.website-build-tasks span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
  color: #4338ca;
  font-size: 0.5rem;
  font-weight: 800;
}

.website-build-tasks i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-story-copy .chip {
  margin-bottom: 1rem;
}

.pricing-story-copy h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.pricing-story-copy .pricing-copy-lead {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.pricing-copy-story {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.pricing-copy-story + .pricing-copy-story {
  margin-top: 0.75rem;
}

.pricing-value-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 15px;
  background: #f7f7ff;
}

.pricing-value-box > strong {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-value-box span,
.pricing-value-box small {
  display: block;
}

.pricing-value-box span {
  color: var(--foreground);
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-value-box small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.pricing-story-close {
  margin-top: 1rem;
  padding-left: 1rem;
  color: #4338ca;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .pricing-story-shell {
    grid-template-columns: 1fr;
  }

  .pricing-story-visual {
    min-height: 370px;
  }
}

@media (max-width: 430px) {
  .pricing-story-visual {
    min-height: 345px;
  }

  .creative-art-card {
    left: 0.7rem;
    width: 82%;
  }

  .website-build-card {
    right: 0.65rem;
    width: 80%;
  }

  .pricing-value-box {
    align-items: flex-start;
  }
}

/* Compact pricing card: same scale as About, with its own composition */
.pricing-compact-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-color: rgba(79, 70, 229, 0.14);
  background-color: #fbfbff;
  box-shadow: 0 24px 60px rgba(49, 46, 129, 0.11);
}

.pricing-compact-shell::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='160' viewBox='0 0 220 160'%3E%3Cg fill='none' stroke='%234f46e5' stroke-opacity='.11' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='22' width='58' height='42' rx='9'/%3E%3Cpath d='M18 34h58M26 28h1M33 28h1M40 28h1'/%3E%3Cpath d='m154 20 2.5 7.5L164 30l-7.5 2.5L154 40l-2.5-7.5L144 30l7.5-2.5L154 20Z'/%3E%3Cpath d='M159 134v-27l17-13 17 13v27h-12v-16h-10v16h-12Z'/%3E%3Cpath d='M90 112h34M107 95v34' stroke-dasharray='2 6'/%3E%3Cpath d='M70 82c20 0 24 16 43 16s23-16 43-16' stroke-dasharray='3 7'/%3E%3C/g%3E%3Cg fill='%234f46e5' fill-opacity='.1'%3E%3Ccircle cx='103' cy='98' r='2.5'/%3E%3Ccircle cx='156' cy='82' r='2.5'/%3E%3Ccircle cx='205' cy='52' r='2'/%3E%3Ccircle cx='12' cy='128' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 8px 10px;
  background-size: 220px 160px;
}

.pricing-compact-shell::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -82px;
  right: -62px;
  width: 176px;
  height: 176px;
  pointer-events: none;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(79, 70, 229, 0.035), 0 0 0 48px rgba(79, 70, 229, 0.025);
}

.pricing-compact-shell > * {
  position: relative;
  z-index: 1;
}

.pricing-compact-copy {
  min-width: 0;
}

.pricing-compact-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.pricing-compact-copy .about-lead {
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.pricing-compact-copy .about-story {
  font-size: 0.92rem;
  line-height: 1.68;
}

.pricing-compact-copy .about-story + .about-story {
  margin-top: 0.55rem;
}

.pricing-custom-visual {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 22px;
  background: #eef0ff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.42), 0 16px 34px rgba(49, 46, 129, 0.11);
}

.pricing-custom-visual::before,
.pricing-custom-visual::after {
  content: '';
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 13px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 2px 8px rgba(49, 46, 129, 0.08);
}

.pricing-custom-visual::before {
  top: 0.5rem;
  left: 42%;
  transform: rotate(-7deg);
}

.pricing-custom-visual::after {
  right: 8%;
  bottom: 0.6rem;
  transform: rotate(6deg);
}

.pricing-custom-art {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
}

.pricing-visual-tag {
  position: absolute;
  z-index: 4;
  padding: 0.35rem 0.55rem;
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(49, 46, 129, 0.1);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-visual-tag--art {
  top: 0.8rem;
  left: 0.75rem;
  transform: rotate(-3deg);
}

.pricing-visual-tag--site {
  top: 0.85rem;
  right: 0.75rem;
  transform: rotate(3deg);
}

.pricing-image-badge {
  position: absolute;
  right: 0.9rem;
  bottom: 0.85rem;
  min-width: 150px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(49, 46, 129, 0.18);
  transform: rotate(-2.5deg);
}

.pricing-image-badge small,
.pricing-image-badge strong,
.pricing-image-badge span {
  display: block;
}

.pricing-image-badge small {
  color: var(--primary);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-image-badge strong {
  margin: 0.08rem 0;
  color: var(--foreground);
  font-size: 1.25rem;
  line-height: 1;
}

.pricing-image-badge span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.pricing-compact-price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 14px;
  background: #f7f7ff;
}

.pricing-compact-price > strong {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-compact-price span,
.pricing-compact-price small {
  display: block;
}

.pricing-compact-price span {
  color: var(--foreground);
  font-size: 0.76rem;
  font-weight: 800;
}

.pricing-compact-price small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
}

.pricing-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.pricing-detail-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: var(--radius-full);
  background: #f7f7ff;
  font-size: 0.62rem;
  font-weight: 800;
}

.pricing-detail-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-visit-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid rgba(79, 70, 229, 0.42);
  border-radius: 16px;
  background: #f4f4ff;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.14);
  animation: discountAttention 2.8s ease-in-out infinite;
}

.pricing-visit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  border-radius: 12px;
  background: var(--primary);
}

.pricing-visit-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-visit-box strong,
.pricing-visit-box small {
  display: block;
}

.pricing-visit-box strong {
  color: var(--foreground);
  font-size: 0.9rem;
  line-height: 1.2;
}

.pricing-visit-box small {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.pricing-visit-arrow {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-visit-box del {
  margin-right: 0.15rem;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 700;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.pricing-visit-box b {
  margin-right: 0.15rem;
  color: var(--primary);
  font-size: 1.55rem;
  line-height: 1;
}

.pricing-visit-save {
  padding: 0.55rem 0.75rem;
  color: #166534;
  border: 2px solid #86efac;
  border-radius: var(--radius-full);
  background: #f0fdf4;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.designs-above-callout {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: -0.35rem 0 0;
  padding: 0.75rem 1rem;
  color: #312e81;
  border: 2px solid rgba(79, 70, 229, 0.22);
  border-radius: 16px;
  background: #eef2ff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
  text-align: left;
}

.designs-up-arrows {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  flex: 0 0 auto;
  color: var(--primary);
  animation: arrowsPointUp 1.6s ease-in-out infinite;
}

.designs-up-arrows svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.designs-up-arrows svg:nth-child(2) {
  width: 31px;
  height: 31px;
}

.designs-above-copy strong,
.designs-above-copy span {
  display: block;
}

.designs-above-copy strong {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 900;
}

.designs-above-copy span {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

@keyframes arrowsPointUp {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-4px); }
}

.design-claim-banner {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: var(--foreground);
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 20px;
  background: #eef2ff;
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.16), 0 0 0 5px rgba(79, 70, 229, 0.06);
}

.design-claim-banner::after {
  content: 'CLAIM YOURS';
  position: absolute;
  z-index: -1;
  right: 1rem;
  bottom: -0.55rem;
  color: rgba(79, 70, 229, 0.055);
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.design-claim-message {
  min-width: 0;
}

.design-claim-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.65rem;
  color: white;
  border-radius: var(--radius-full);
  background: var(--primary);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.design-claim-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.5);
  animation: claimStatusPulse 1.8s ease-out infinite;
}

.design-claim-message h3 {
  margin: 0 0 0.35rem;
  color: var(--foreground);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.design-claim-message h3 span {
  color: var(--primary);
}

.design-claim-message p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.design-claim-message p strong {
  color: var(--foreground);
  font-size: 0.86rem;
}

.design-claim-price {
  display: grid;
  justify-items: center;
  min-width: 118px;
  padding: 0.7rem 0.85rem;
  color: var(--foreground);
  border: 2px solid #c7d2fe;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.design-claim-price small,
.design-claim-price em {
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.design-claim-price > span {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.2rem 0;
}

.design-claim-price del {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.design-claim-price b {
  color: var(--primary);
  font-size: 1.75rem;
  line-height: 1;
}

.design-claim-price em {
  color: #15803d;
}

.design-claim-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 205px;
  padding: 0.85rem 1rem;
  color: white;
  border: 2px solid var(--primary);
  border-radius: 14px;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.24);
  text-decoration: none;
  animation: claimButtonPulse 2.3s ease-in-out infinite;
}

.design-claim-cta span,
.design-claim-cta small {
  display: block;
}

.design-claim-cta span {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.design-claim-cta small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.6rem;
  font-weight: 800;
}

.design-claim-cta svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.design-claim-cta:hover {
  color: white;
  background: #4338ca;
  transform: translateY(-2px);
}

@keyframes claimStatusPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.55); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(251, 113, 133, 0); }
}

@keyframes claimButtonPulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(79, 70, 229, 0.24), 0 0 0 0 rgba(79, 70, 229, 0.28); }
  50% { box-shadow: 0 12px 26px rgba(79, 70, 229, 0.3), 0 0 0 7px rgba(79, 70, 229, 0); }
}

@keyframes discountAttention {
  0%, 100% { box-shadow: 0 12px 28px rgba(79, 70, 229, 0.14); }
  50% { box-shadow: 0 14px 34px rgba(79, 70, 229, 0.28); }
}

@media (max-width: 820px) {
  .pricing-compact-shell {
    grid-template-columns: 1fr;
  }

  .designs-above-callout {
    order: 0;
  }

  .pricing-custom-visual {
    order: 1;
  }

  .pricing-compact-copy {
    order: 2;
  }

  .design-claim-banner {
    order: 3;
  }
}

@media (max-width: 620px) {
  .designs-above-callout {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .designs-up-arrows svg {
    width: 20px;
    height: 20px;
  }

  .designs-up-arrows svg:nth-child(2) {
    width: 25px;
    height: 25px;
  }

  .design-claim-banner {
    grid-template-columns: 1fr;
  }

  .design-claim-price {
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-items: start;
    gap: 0.55rem;
    width: 100%;
  }

  .design-claim-price > span {
    margin: 0;
  }

  .design-claim-cta {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .pricing-custom-visual,
  .pricing-custom-art {
    min-height: 245px;
  }

  .pricing-image-badge {
    right: 0.65rem;
    bottom: 0.65rem;
  }
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
  background: var(--gradient-soft);
}

.process-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.process-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-card .icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-card .icon svg,
.why-card .icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.15);
}

.process-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
  background: #eef3ff;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 280px;
  background: #bfdbfe;
  border-radius: 32px;
  opacity: 1;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.plan-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.plan-card--muted {
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.85);
}

.plan-card--primary {
  background: var(--gradient-brand);
  color: white;
  border: none;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .plan-card--primary {
    transform: scale(1.05);
    padding: 2rem;
  }
}

.plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.plan-card--primary .plan-label {
  color: rgba(255, 255, 255, 0.8);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.plan-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.plan-card--primary .plan-sub {
  color: rgba(255, 255, 255, 0.8);
}

.badge-tag {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--chip-text);
  white-space: nowrap;
}

.plan-card--primary .badge-tag {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.price-block {
  margin: 1.25rem 0;
}

.price-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 800;
}

.price-original del {
  color: white;
  font-size: 1.35rem;
  text-decoration-color: #fca5a5;
  text-decoration-thickness: 3px;
}

.price-offer-row {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 30px rgba(30, 27, 75, 0.2);
  text-align: center;
  animation: discountAttention 2.8s ease-in-out infinite;
}

.portfolio-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0.6rem 0.9rem;
  color: #312e81;
  border: 2px solid white;
  border-radius: var(--radius-full);
  background: white;
  box-shadow: 0 8px 18px rgba(30, 27, 75, 0.18);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.price-main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.25rem;
  font-weight: 900;
}

.price-main .currency {
  font-size: 1rem;
}

.price-main .amount {
  font-size: clamp(3.6rem, 7vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price-main .per {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
}

.price-meta {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.625rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.plan-footnote {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  opacity: 0.7;
  line-height: 1.5;
}


.ghost-pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px dashed var(--muted-light);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ========================================
   Refund Policy Section
   ======================================== */
.refund-section {
  position: relative;
  background-color: #f9f8ff;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(124, 58, 237, 0.09), transparent 20rem),
    radial-gradient(circle at 92% 78%, rgba(8, 145, 178, 0.08), transparent 22rem),
    radial-gradient(circle, rgba(79, 70, 229, 0.11) 1px, transparent 1.25px);
  background-size: auto, auto, 28px 28px;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

.refund-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.refund-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  background: var(--gradient-brand);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.refund-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refund-content h3 {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.refund-content > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.refund-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.refund-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.55;
}

.refund-point svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .refund-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .refund-icon {
    width: 56px;
    height: 56px;
  }
}

/* ========================================
   Why Section
   ======================================== */
.why-section {
  background: white;
  position: relative;
}

.why-section::before {
  content: none;
}

.why-grid {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.why-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   Trust/Testimonials Section
   ======================================== */
.trust-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  color: rgba(37, 99, 235, 0.1);
}

.testimonial-card .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-card .content {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-card .author-info .name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card .author-info .role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  background: var(--gradient-soft);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 48px;
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  background: white;
}

.contact-shell {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
}

@media (min-width: 768px) {
  .contact-shell {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  background: #eef3ff;
  padding: 2rem;
}

.contact-info .eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-info h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.contact-info p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-lines {
  display: grid;
  gap: 0.875rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-line .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-line small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-line span {
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form-wrap {
  padding: 2rem;
}

.contact-form-wrap h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.contact-form-wrap > p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.875rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 0.9375rem;
  min-height: 48px;
}

.contact-form .form-honey {
  display: none !important;
}

.form-privacy {
  margin: -0.125rem 0 0.125rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success .icon svg {
  width: 32px;
  height: 32px;
  color: var(--success);
}

.form-success h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: var(--gradient-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
}

.cta-section .actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
background: var(--gradient-brand);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer .brand {
  color: white;
  margin-bottom: 1rem;
}



.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.footer-links button:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li {
  cursor: default;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom small {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Artist Background Pattern System
   Hand-drawn arcs, studio grids, halftone dots, and creative color glows
   ======================================== */
.hero {
  background-color: #f4f3ff;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(219, 39, 119, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(8, 145, 178, 0.13), transparent 22rem),
    radial-gradient(ellipse at 0 0, transparent 0 27px, rgba(79, 70, 229, 0.11) 28px 30px, transparent 31px),
    radial-gradient(ellipse at 100% 100%, transparent 0 27px, rgba(124, 58, 237, 0.08) 28px 30px, transparent 31px);
  background-size: auto, auto, 132px 98px, 132px 98px;
  background-position: center, center, 0 0, 66px 49px;
}

.process-section {
  background-color: #fbfbff;
  background-image:
    radial-gradient(circle at 8% 78%, rgba(8, 145, 178, 0.08), transparent 20rem),
    radial-gradient(circle at 92% 18%, rgba(219, 39, 119, 0.07), transparent 18rem),
    linear-gradient(115deg, transparent 46%, rgba(79, 70, 229, 0.07) 47%, rgba(79, 70, 229, 0.07) 49%, transparent 50%),
    linear-gradient(25deg, transparent 46%, rgba(124, 58, 237, 0.05) 47%, rgba(124, 58, 237, 0.05) 49%, transparent 50%);
  background-size: auto, auto, 150px 110px, 150px 110px;
  background-position: center, center, 0 0, 75px 55px;
}

.pricing-section {
  background-color: #f0f1ff;
  background-image:
    radial-gradient(circle at 14% 14%, rgba(219, 39, 119, 0.11), transparent 21rem),
    radial-gradient(circle at 88% 82%, rgba(8, 145, 178, 0.11), transparent 23rem),
    radial-gradient(circle, rgba(79, 70, 229, 0.15) 1.2px, transparent 1.5px);
  background-size: auto, auto, 25px 25px;
}

.pricing-section::before {
  background-color: rgba(255, 255, 255, 0.52);
  background-image:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 30px 80px rgba(79, 70, 229, 0.12);
}

.why-section {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 4% 25%, rgba(124, 58, 237, 0.08), transparent 18rem),
    radial-gradient(circle at 96% 76%, rgba(8, 145, 178, 0.08), transparent 20rem),
    linear-gradient(45deg, transparent 47%, rgba(79, 70, 229, 0.045) 48%, rgba(79, 70, 229, 0.045) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 47%, rgba(219, 39, 119, 0.035) 48%, rgba(219, 39, 119, 0.035) 50%, transparent 51%);
  background-size: auto, auto, 86px 86px, 86px 86px;
  background-position: center, center, 0 0, 43px 43px;
}

.trust-section {
  background-color: #f9f8ff;
  background-image:
    radial-gradient(circle at 50% 0, rgba(124, 58, 237, 0.09), transparent 30rem),
    radial-gradient(circle, rgba(79, 70, 229, 0.13) 1px, transparent 1.25px);
  background-size: auto, 22px 22px;
}

.faq-section {
  background-color: #f6f7ff;
  background-image:
    radial-gradient(circle at 84% 20%, rgba(8, 145, 178, 0.09), transparent 20rem),
    radial-gradient(circle at 12% 90%, rgba(219, 39, 119, 0.07), transparent 22rem),
    radial-gradient(ellipse at 0 100%, transparent 0 38px, rgba(79, 70, 229, 0.075) 39px 41px, transparent 42px),
    radial-gradient(ellipse at 100% 0, transparent 0 38px, rgba(124, 58, 237, 0.055) 39px 41px, transparent 42px);
  background-size: auto, auto, 170px 130px, 170px 130px;
  background-position: center, center, 0 0, 85px 65px;
}

.contact-section {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 5% 25%, rgba(37, 99, 235, 0.09), transparent 20rem),
    radial-gradient(circle at 95% 70%, rgba(219, 39, 119, 0.08), transparent 21rem),
    radial-gradient(circle, rgba(124, 58, 237, 0.095) 1px, transparent 1.2px);
  background-size: auto, auto, 30px 30px;
}

.contact-info {
  background-color: #f1f1ff;
  background-image:
    linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.07)),
    radial-gradient(circle, rgba(79, 70, 229, 0.12) 1px, transparent 1.25px);
  background-size: auto, 20px 20px;
}

.cta-section {
  background-color: #f4f3ff;
  background-image:
    radial-gradient(circle at 50% 110%, rgba(124, 58, 237, 0.15), transparent 26rem),
    repeating-conic-gradient(from 252deg at 50% 120%, transparent 0 9deg, rgba(79, 70, 229, 0.055) 9deg 10deg, transparent 10deg 19deg);
}

.footer {
  background-color: #3730a3;
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #1d4ed8 0%, #5b21b6 58%, #86198f 120%);
}

.process-card,
.why-card,
.testimonial-card,
.faq-item,
.contact-shell {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.process-card:nth-child(1),
.why-card:nth-child(1),
.why-card:nth-child(4) {
  border-color: rgba(79, 70, 229, 0.24);
}

.process-card:nth-child(2),
.why-card:nth-child(2),
.why-card:nth-child(5) {
  border-color: rgba(8, 145, 178, 0.22);
}

.process-card:nth-child(3),
.why-card:nth-child(3),
.why-card:nth-child(6) {
  border-color: rgba(219, 39, 119, 0.19);
}

@media (max-width: 640px) {
  .hero {
    background-size: auto, auto, 112px 84px, 112px 84px;
  }

  .process-section,
  .why-section,
  .faq-section {
    background-size: auto, auto, 120px 90px, 120px 90px;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ========================================
   Touch Targets for Mobile
   ======================================== */
@media (max-width: 768px) {
  .btn,
  .faq-question,
  .mobile-menu a {
    min-height: 48px;
  }
}

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.3);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 116, 139, 0.5);
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cmp-spotlight {
    display: none;
  }
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
