/* ==================== DESIGN TOKENS ==================== */
:root {
  --background: 0 0% 100%;
  --foreground: 234 47% 14%;
  --card: 0 0% 100%;
  --card-foreground: 234 47% 14%;
  --primary: 221 83% 59%;
  --primary-foreground: 0 0% 100%;
  --secondary: 225 100% 97%;
  --secondary-foreground: 234 47% 14%;
  --muted: 220 20% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 270 76% 64%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --border: 220 20% 90%;
  --ring: 221 83% 59%;
  --radius: 0.75rem;

  --blue: 221 83% 59%;
  --violet: 270 76% 64%;
  --charcoal: 234 47% 14%;
  --danger: 0 84% 60%;
  --danger-bg: 0 90% 97%;
  --success: 142 71% 45%;
  --success-bg: 142 76% 96%;
  --warning: 38 92% 50%;

  --gradient-hero: linear-gradient(135deg, hsl(225 100% 99%) 0%, hsl(225 80% 96%) 50%, hsl(270 60% 97%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(var(--blue)), hsl(var(--violet)));
  --gradient-section: linear-gradient(180deg, hsl(225 100% 97%) 0%, hsl(270 60% 97%) 100%);
  --shadow-card: 0 4px 24px -4px hsl(221 83% 59% / 0.1), 0 1px 4px hsl(0 0% 0% / 0.05);
  --shadow-card-hover: 0 12px 40px -8px hsl(221 83% 59% / 0.2), 0 2px 8px hsl(0 0% 0% / 0.07);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    scrollbar-gutter: stable;
  }
}
body {
  font-family: "Inter", sans-serif;
  color: hsl(var(--foreground));
  background: var(--gradient-hero);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
hr {
  border: none;
  border-top: 1px solid hsl(var(--border));
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==================== UTILITIES ==================== */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 10px) scale(0.98);
  }
}
@keyframes float-orb-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-25px, 15px) scale(1.03);
  }
  66% {
    transform: translate(20px, -25px) scale(0.97);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes stat-shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  animation: float-orb 8s ease-in-out infinite;
}
.orb-2 {
  animation: float-orb-2 10s ease-in-out infinite;
}

.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(hsl(221 83% 59% / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, hsl(221 83% 59% / 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal[data-direction="left"] {
  transform: translateY(40px);
}
.scroll-reveal[data-direction="right"] {
  transform: translateY(40px);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn svg,
.btn i {
  width: 1rem;
  height: 1rem;
}
.btn-gradient {
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn-outline:hover {
  background: hsl(var(--secondary));
}
.btn-hero-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
}
.btn-hero-outline:hover {
  background: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
  box-shadow: 0 12px 24px -4px hsl(0 0% 0% / 0.15);
}
.btn-nav-cta {
  background: #0bc2da;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.575rem 1.2rem;
  border-radius: 0.375rem;
}
.btn-nav-cta:hover {
  background: #0aafc5;
}
.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon:hover {
  background: hsl(var(--secondary));
}
.btn-full {
  width: 100%;
  height: 2.75rem;
}
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}
.btn-case {
  width: 100%;
}
.btn-case:hover {
  background: hsl(var(--primary));
  color: white;
  border-color: hsl(var(--primary));
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(135deg, hsl(221 83% 59% / 0.7), hsl(270 76% 64% / 0.7));
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.navbar.navbar-floating {
  top: 1rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 64rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar.scrolled {
  background: linear-gradient(135deg, hsl(221 83% 59% / 0.92), hsl(270 76% 64% / 0.92));
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-floating-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  padding: 0 1rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
}
.logo-icon svg {
  width: 1rem;
  height: 1rem;
  color: white;
}
.logo-dot {
  color: rgba(255, 255, 255, 0.8);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.nav-links button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.nav-cta-desktop {
  display: none;
}
.hamburger {
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: white;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hamburger svg {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-menu {
  display: none;
  background: linear-gradient(135deg, hsl(221 83% 59% / 0.95), hsl(270 76% 64% / 0.95));
}
.mobile-menu.open {
  display: block;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
}
.mobile-menu-inner button {
  width: 100%;
  text-align: left;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  border-radius: 0.375rem;
  transition: background 0.2s;
}
.mobile-menu-inner button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-cta {
  margin-top: 0.5rem;
  width: 100% !important;
  text-align: center !important;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta-desktop {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}
.orb-hero-1 {
  top: 25%;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.1);
  filter: blur(48px);
}
.orb-hero-2 {
  bottom: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--accent) / 0.1);
  filter: blur(48px);
}
.orb-hero-3 {
  top: 2.5rem;
  right: 33%;
  width: 10rem;
  height: 10rem;
  background: hsl(var(--primary) / 0.05);
  filter: blur(32px);
}
.hero-container {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}
.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--primary) / 0.05);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  animation: pulse 2s infinite;
}
.hero-headline {
  font-size: 2.25rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
  .hero-sub {
    font-size: 1.25rem;
  }
  .hero-ctas {
    flex-direction: row;
  }
  .orb-hero-1 {
    width: 31rem;
    height: 31rem;
  }
  .orb-hero-2 {
    width: 25rem;
    height: 25rem;
  }
  .orb-hero-3 {
    width: 16rem;
    height: 16rem;
  }
}

/* Stats */
.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-card {
  position: relative;
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.stat-card:hover {
  transform: scale(1.05) translateY(-4px);
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-accent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, hsl(var(--primary) / 0.08) 60deg, transparent 120deg);
  animation: stat-shimmer 4s linear infinite;
  pointer-events: none;
}
.stat-card:hover::after {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    hsl(var(--primary) / 0.15) 60deg,
    hsl(var(--accent) / 0.1) 120deg,
    transparent 180deg
  );
}
.stat-card-inner {
  position: relative;
  z-index: 1;
  background: hsl(var(--card));
  border-radius: inherit;
  padding: 1.25rem;
  text-align: center;
}
.stat-icon {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.25rem;
}
.stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ==================== SECTIONS ==================== */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-tinted {
  background: var(--gradient-section);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
.badge-accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}
.section-sub {
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
}
.section-sub-lg {
  font-size: 1.125rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ==================== PROBLEM vs SOLUTION ==================== */
.pvs-grid {
  display: grid;
  gap: 1.5rem;
}
.pvs-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}
.pvs-problems {
  border-left: 4px solid hsl(var(--danger));
}
.pvs-solutions {
  border-left: 4px solid hsl(var(--primary));
}
.pvs-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pvs-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.pvs-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.pvs-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}
.pvs-icon-danger {
  background: hsl(var(--danger-bg));
  color: hsl(var(--danger));
}
.pvs-icon-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}
.pvs-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pvs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pvs-item-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.pvs-item-icon svg {
  width: 1rem;
  height: 1rem;
}
.pvs-item-icon.danger {
  color: hsl(var(--danger));
}
.pvs-item-icon.primary {
  color: hsl(var(--primary));
}
.pvs-list strong {
  font-size: 0.875rem;
  display: block;
  color: hsl(var(--foreground));
}
.pvs-list span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

/* ==================== BENTO GRID ==================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.bento-card {
  position: relative;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  background: hsl(var(--card));
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.bento-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.bento-card:hover .bento-card-bg {
  opacity: 0.7;
}
.bento-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.bg-primary-light {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.1));
}
.bg-accent-light {
  background: linear-gradient(135deg, hsl(var(--accent) / 0.05), hsl(var(--accent) / 0.1));
}
.bento-card-content {
  position: relative;
}
.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.bento-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
}
.bento-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-primary {
  color: hsl(var(--primary));
}
.icon-accent {
  color: hsl(var(--accent));
}
.bento-tag {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
}
.bento-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}
.bento-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.bento-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-top: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-more svg {
  width: 0.875rem;
  height: 0.875rem;
}
.bento-card:hover .bento-more {
  opacity: 1;
}
.bento-about-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bento-photo-placeholder {
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.bento-photo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.bento-photo-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Gradient border hover effect for bento cards */
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-accent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.bento-card:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-card {
    padding: 1.75rem;
  }
  .bento-icon-wrap {
    width: 3rem;
    height: 3rem;
  }
  .bento-icon-wrap svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  .bento-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
  .bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .bento-card p {
    font-size: 0.875rem;
  }
  .bento-more {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
  .bento-about-layout {
    flex-direction: row;
  }
  .bento-photo-placeholder {
    width: 8rem;
    height: 8rem;
  }
}

/* ==================== TECH STACK MARQUEE ==================== */
.marquee-wrapper {
  position: relative;
  background: hsl(var(--secondary) / 0.4);
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, hsl(var(--background)), transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, hsl(var(--background)), transparent);
}
.marquee-row {
  display: flex;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.marquee-row:last-child {
  margin-bottom: 0;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track-reverse {
  display: flex;
  animation: marquee-reverse 32s linear infinite;
  width: max-content;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.tech-pill.blue {
  color: hsl(221 83% 53%);
}
.tech-pill.indigo {
  color: hsl(239 84% 67%);
}
.tech-pill.orange {
  color: hsl(25 95% 53%);
}
.tech-pill.purple {
  color: hsl(271 91% 65%);
}
.tech-pill.cyan {
  color: hsl(188 94% 43%);
}
.tech-pill.violet {
  color: hsl(258 90% 66%);
}
.tech-pill.blue-dark {
  color: hsl(221 83% 40%);
}
.tech-pill.pink {
  color: hsl(330 81% 60%);
}
.tech-pill.sky {
  color: hsl(199 89% 48%);
}
.tech-pill.teal {
  color: hsl(173 80% 36%);
}
.tech-pill.red {
  color: hsl(0 84% 60%);
}

/* ==================== CASE STUDIES ==================== */
.section-cases {
  background: linear-gradient(to bottom, hsl(var(--secondary) / 0.6), hsl(var(--muted) / 0.4));
}
.cases-grid {
  display: grid;
  gap: 1.5rem;
}
.case-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #000;
  box-shadow: 4px 4px #000;
  transition: all 0.3s;
}
.case-inner {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.case-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.case-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}
.case-audience {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.case-card > .case-inner > p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
  flex: 1;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.case-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.1);
  font-weight: 500;
}
.case-sep {
  margin-bottom: 1.25rem;
}
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.case-metric .gradient-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
}
.case-metric span:last-child {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  background: hsl(var(--background));
  padding: 6rem 0;
}
.testimonials-container {
  max-width: 48rem;
  text-align: center;
}
.testimonial-quote-icon {
  margin-bottom: 2rem;
}
.testimonial-quote-icon svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  color: hsl(var(--primary) / 0.3);
}
.testimonial-text {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--warning));
  fill: hsl(var(--warning));
}
.testimonial-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.testimonial-author {
  margin-bottom: 2rem;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.testimonial-dots {
  display: flex;
  gap: 0.75rem;
}
.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--border));
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testimonial-dot.active {
  background: hsl(var(--primary));
  width: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-section);
}
.orb-contact-1 {
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: hsl(var(--primary) / 0.1);
  filter: blur(48px);
}
.orb-contact-2 {
  bottom: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: hsl(var(--accent) / 0.1);
  filter: blur(48px);
}
.contact-container {
  position: relative;
}
.tab-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab-switcher-inner {
  display: inline-flex;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}
.tab-btn svg {
  width: 1rem;
  height: 1rem;
}
.tab-btn:hover {
  color: hsl(var(--foreground));
}
.tab-btn.active {
  background: hsl(var(--primary));
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact-card {
  max-width: 48rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.contact-tab {
  min-height: 600px;
}
.calendar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  color: hsl(var(--muted-foreground));
}
.calendar-iframe {
  width: 100%;
  border: 0;
  min-height: 800px;
  height: 85vh;
  max-height: 900px;
}
.form-wrapper {
  padding: 2rem;
  max-width: 42rem;
  margin: 0 auto;
  min-height: 600px;
}
.form-header {
  margin-bottom: 1.5rem;
}
.form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}
.form-header p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.form-row {
  display: grid;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}
.form-group textarea {
  resize: none;
}
.form-group input.error,
.form-group textarea.error {
  border-color: hsl(var(--destructive));
}
.form-error {
  font-size: 0.75rem;
  color: hsl(var(--destructive));
  margin-top: 0.25rem;
  min-height: 1rem;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  gap: 0.75rem;
  min-height: 200px;
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--success-bg));
}
.success-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--success));
}
.form-success h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.form-success p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 20rem;
}
.contact-email {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.email-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.email-card:hover {
  box-shadow: var(--shadow-card);
  border-color: hsl(var(--primary) / 0.2);
}
.email-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  transition: background 0.2s;
}
.email-card:hover .email-icon-wrap {
  background: hsl(var(--primary) / 0.2);
}
.email-icon-wrap svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}
.email-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.email-address {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .form-wrapper {
    padding: 3rem;
  }
  .calendar-iframe {
    min-height: 600px;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: hsl(var(--secondary) / 0.6);
  border-top: 1px solid hsl(var(--border));
  padding: 2.5rem 0;
}
.footer-inner {
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
}
.footer-tagline {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}
.social-link:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.3);
}
.social-link svg {
  width: 1rem;
  height: 1rem;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-privacy-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.footer-privacy-link:hover {
  color: hsl(var(--primary));
}

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

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
  }
}

/* ==================== MODALS ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  animation: fade-in 0.2s ease-out;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: hsl(var(--muted-foreground));
  transition: background 0.2s;
}
.modal-close:hover {
  background: hsl(var(--muted));
}
.modal-close svg {
  width: 1rem;
  height: 1rem;
}
.modal-header {
  margin-bottom: 1rem;
}
.modal-header .modal-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.modal-header .modal-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header .modal-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}
.modal-header .modal-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
}
.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.modal-body p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.modal-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.modal-body li svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.modal-body hr {
  border: none;
  border-top: 1px solid hsl(var(--border));
}
.modal-body .modal-result {
  font-weight: 500;
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: hsl(var(--foreground));
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s;
  max-width: 24rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.error {
  background: hsl(var(--destructive));
}
.toast.success {
  background: hsl(var(--success));
}

/* ==================== KLARO COOKIE CONSENT ==================== */
.klaro {
  font-family: "Inter", sans-serif !important;
}

.klaro .cookie-notice {
  background: hsl(var(--charcoal)) !important;
  border: 1px solid hsl(var(--border)) !important;
  max-width: 500px !important;
  box-sizing: border-box !important;
  border-radius: var(--radius) !important;
  box-shadow: 4px 4px 0 hsl(var(--charcoal)) !important;
  font-family: "Inter", sans-serif !important;
  padding: 1.25rem !important;
}

@media (max-width: 640px) {
  .klaro .cookie-notice {
    max-width: calc(100vw - 2rem) !important;
  }
}

.klaro .cookie-notice .cn-body {
  color: hsl(0 0% 90%) !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
}

.klaro .cookie-notice .cn-learn-more {
  color: hsl(var(--blue)) !important;
  font-weight: 500 !important;
}

.klaro .cookie-notice .cn-buttons {
  display: flex !important;
  gap: 0.5rem !important;
}

.klaro .cookie-notice .cm-btn {
  border-radius: calc(var(--radius) - 2px) !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-success {
  background: hsl(var(--blue)) !important;
  color: hsl(var(--primary-foreground)) !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-success:hover {
  background: hsl(221 83% 50%) !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-danger {
  background: transparent !important;
  color: hsl(0 0% 80%) !important;
  border-color: hsl(0 0% 40%) !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-danger:hover {
  background: hsl(0 0% 20%) !important;
}

/* Klaro Modal */
.klaro .cookie-modal {
  font-family: "Inter", sans-serif !important;
}

.klaro .cookie-modal .cm-modal {
  background: hsl(var(--charcoal)) !important;
  border: 1px solid hsl(var(--border)) !important;
  border-radius: var(--radius) !important;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3) !important;
  color: hsl(0 0% 90%) !important;
}

.klaro .cookie-modal .cm-modal h1,
.klaro .cookie-modal .cm-modal h2 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  color: hsl(0 0% 100%) !important;
  font-size: 1.125rem !important;
}

.klaro .cookie-modal .cm-header {
  border-bottom: 1px solid hsl(0 0% 25%) !important;
}

.klaro .cookie-modal .cm-footer {
  border-top: 1px solid hsl(0 0% 25%) !important;
}

.klaro .cookie-modal .cm-footer .cm-footer-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.375rem !important;
  justify-content: flex-start !important;
}

.klaro .cookie-modal .cm-body {
  color: hsl(0 0% 80%) !important;
}

.klaro .cookie-modal .cm-list-label {
  font-weight: 600 !important;
}

.klaro .cookie-modal .cm-purpose .cm-list-title {
  color: hsl(0 0% 95%) !important;
  font-weight: 600 !important;
}

.klaro .cookie-modal .cm-btn {
  border-radius: calc(var(--radius) - 2px) !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  padding: 0.5rem 0.875rem !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-accept-all,
.klaro .cookie-modal .cm-btn.cm-btn-success {
  background: hsl(var(--blue)) !important;
  color: hsl(var(--primary-foreground)) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-accept-all:hover,
.klaro .cookie-modal .cm-btn.cm-btn-success:hover {
  background: hsl(221 83% 50%) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-accept {
  background: transparent !important;
  color: hsl(0 0% 90%) !important;
  border-color: hsl(var(--blue)) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-accept:hover {
  background: hsl(var(--blue) / 0.15) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-danger,
.klaro .cookie-modal .cm-btn.cm-btn-decline {
  background: transparent !important;
  color: hsl(0 0% 70%) !important;
  border-color: hsl(0 0% 40%) !important;
}

.klaro .cookie-modal .cm-btn.cm-btn-danger:hover,
.klaro .cookie-modal .cm-btn.cm-btn-decline:hover {
  background: hsl(0 0% 20%) !important;
}

/* Toggle switches */
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider {
  background: hsl(var(--blue)) !important;
}

.klaro .cookie-modal .cm-list-input + .cm-list-label .slider {
  background: hsl(0 0% 35%) !important;
}

/* Links */
.klaro .cookie-modal a {
  color: hsl(var(--blue)) !important;
}

.klaro .cookie-modal a:hover {
  color: hsl(var(--violet)) !important;
}

/* ==================== SERVICES CHECKBOXES ==================== */
.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .services-checkboxes {
    grid-template-columns: 1fr;
  }
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}
.checkbox-label:hover {
  color: hsl(var(--blue));
}
.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: hsl(var(--blue));
  border-radius: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.consent-label {
  align-items: flex-start;
}
.consent-label span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* ==================== PRICING ==================== */
.pricing-mobile { display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-table-wrapper { display: none; }
.pricing-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pricing-popular {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2), var(--shadow-card);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsl(var(--primary));
  color: white;
}
.pricing-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1); display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
}
.pricing-icon-wrap svg { width: 1.5rem; height: 1.5rem; }
.pricing-card-header h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.25rem; font-weight: 700; }
.pricing-subtitle { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.pricing-price { margin-bottom: 1rem; }
.pricing-amount { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.875rem; font-weight: 700; }
.pricing-unit { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.pricing-feature-value { flex-shrink: 0; margin-left: 0.5rem; display: flex; align-items: center; }
.pricing-footnote { text-align: center; font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .pricing-mobile { display: none; }
  .pricing-table-wrapper { display: block; }
}

/* Desktop pricing table */
.pricing-table {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pt-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; border-bottom: 1px solid hsl(var(--border)); }
.pt-row:last-child { border-bottom: none; }
.pt-row-alt { background: hsl(var(--secondary) / 0.3); }
.pt-cell { padding: 1rem; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; }
.pt-label-cell { justify-content: flex-start; color: hsl(var(--foreground)); }
.pt-popular { background: hsl(var(--primary) / 0.05); }
.pt-header .pt-label-cell { align-items: flex-end; color: hsl(var(--muted-foreground)); font-size: 0.875rem; font-weight: 500; padding: 1.5rem; }
.pt-header .pt-plan-cell { padding: 1.5rem; flex-direction: column; text-align: center; position: relative; }
.pt-badge { position: absolute; top: 0.75rem; left: 50%; transform: translateX(-50%); padding: 0.125rem 0.75rem; border-radius: 9999px; font-size: 0.625rem; font-weight: 700; background: hsl(var(--primary)); color: white; }
.pt-plan-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: hsl(var(--primary) / 0.1); display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); margin: 0.75rem auto 0.75rem; }
.pt-plan-icon svg { width: 1.5rem; height: 1.5rem; }
.pt-header h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.25rem; font-weight: 700; }
.pt-plan-sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.pt-plan-price { margin-top: 0.75rem; }
.pt-amount { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.5rem; font-weight: 700; }
.pt-unit { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.pt-cta-row { border-top: 1px solid hsl(var(--border)); }
.pt-cta-row .pt-cell { padding: 1.5rem; }
