/* VENDITORE.AI — Section-Specific Styles */

/* ---- HERO GEOMETRIC ANIMATION ---- */
.hero-geo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero-geo canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- HERO ANIMATED BACKGROUND ---- */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #0D0D0D;
}

#hero-fractal {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #5B5FC7 0%, transparent 70%);
  top: -10%; left: -5%;
  animation: orb-float-1 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7B7FE7 0%, transparent 70%);
  bottom: -15%; right: -5%;
  animation: orb-float-2 15s ease-in-out infinite;
}

.hero-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #5B5FC7 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float-3 10s ease-in-out infinite;
  opacity: 0.2;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -30px) scale(1.15); }
  66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes orb-float-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__glow--1 {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 95, 199, 0.1) 0%, transparent 70%);
  top: -200px; left: -200px;
  filter: blur(60px);
  animation: glow-drift-1 8s ease-in-out infinite;
  pointer-events: none;
}

.hero__glow--2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 95, 199, 0.06) 0%, transparent 70%);
  bottom: -200px; right: -200px;
  filter: blur(60px);
  animation: glow-drift-2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -20px) scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Typewriter */
.hero-typewriter {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--c-white);
  min-height: 1.2em;
  display: block;
  margin-bottom: var(--s-16);
  letter-spacing: -0.5px;
}

.hero-typewriter .typewriter-text {
  color: var(--c-teal);
}

.hero-typewriter .cursor-blink {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--c-teal);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--s-24);
  letter-spacing: -1.5px;
  color: var(--c-white);
}

.hero__subtitle {
  font-size: var(--fs-body);
  color: var(--c-gray);
  max-width: 640px;
  margin: 0 auto var(--s-40);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--s-16);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--s-40);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-8);
  opacity: 0.5;
}

.scroll-indicator__mouse {
  width: 20px; height: 32px;
  border: 2px solid var(--c-gray);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__dot {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 6px;
  background: var(--c-teal);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { top: 6px; height: 6px; opacity: 1; }
  50% { top: 16px; height: 12px; opacity: 0.3; }
}

.scroll-indicator__text {
  font-size: 10px;
  color: var(--c-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- NARRATIVE ---- */
.narrative {
  position: relative;
}

.narrative__opening {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-32);
  line-height: 1.4;
}

.narrative__body p {
  font-size: var(--fs-body);
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: var(--s-24);
}

.narrative__callout {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-coral);
  padding: var(--s-32) 0;
  border-left: 4px solid var(--c-coral);
  padding-left: var(--s-32);
  margin: var(--s-48) 0;
}

.narrative__closing {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--c-teal);
  text-shadow: 0 0 20px var(--c-teal-glow);
}

/* ---- STATS AUTOMOTIVE ---- */
.stat-auto {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--s-32);
  text-align: center;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-auto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.stat-auto:hover {
  border-color: rgba(91, 95, 199, 0.2);
  box-shadow: var(--shadow-elevation-2), 0 0 60px rgba(91, 95, 199, 0.06);
  transform: translateY(-4px);
}

.stat-auto:hover::after {
  transform: scaleX(1);
}

.stat-auto__unit {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--c-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--s-8);
}

.stat-auto__value {
  font-family: var(--font-heading);
  font-size: var(--fs-stat);
  font-weight: 800;
  margin-bottom: var(--s-8);
}

.stat-auto__value--teal { color: var(--c-teal); text-shadow: 0 0 20px var(--c-teal-glow); }
.stat-auto__value--coral { color: var(--c-coral); text-shadow: 0 0 20px var(--c-coral-glow); }
.stat-auto__value--blue { color: var(--c-blue); }

.stat-auto__label {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  margin-bottom: var(--s-16);
}

.stat-auto__desc {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  line-height: 1.7;
  text-align: left;
  margin-top: var(--s-8);
}

/* ---- CAPITOLO ZERO ---- */
.capitolo {
  position: relative;
}

.capitolo__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--c-coral);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--s-24);
}

.capitolo__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-bottom: var(--s-48);
}

.capitolo__body p {
  font-size: var(--fs-body);
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: var(--s-24);
}

.capitolo__pull-quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--c-white);
  font-style: italic;
  text-align: center;
  padding: var(--s-64) 0;
  position: relative;
}

.capitolo__pull-quote::before {
  content: '"';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: var(--c-teal);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ---- CRUSCOTTO (Dashboard) ---- */
.cruscotto__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-32);
}

.cruscotto__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-20);
}

.cruscotto__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--c-teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cruscotto__item-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.cruscotto__item-desc {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  line-height: 1.6;
}

/* Dashboard mockup */
.dashboard-mockup {
  background: var(--c-surface);
  border: 1px solid var(--c-gray-dim);
  border-radius: var(--radius-xl);
  padding: var(--s-24);
  position: relative;
  overflow: hidden;
}

.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--grad-teal);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-24);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid var(--c-gray-dim);
}

.dashboard-header__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.dashboard-header__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-teal);
}

.dashboard-header__live::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--c-teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.dashboard-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  padding-top: var(--s-16);
}

.dashboard-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 1s var(--ease-out);
}

.dashboard-bar--teal { background: var(--c-teal); }
.dashboard-bar--coral { background: var(--c-coral); }
.dashboard-bar--blue { background: var(--c-blue); }
.dashboard-bar--dim { background: var(--c-gray-dim); }

.dashboard-stats {
  display: flex;
  justify-content: space-around;
  margin-top: var(--s-24);
  padding-top: var(--s-16);
  border-top: 1px solid var(--c-gray-dim);
}

.dashboard-stat {
  text-align: center;
}

.dashboard-stat__value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-teal);
}

.dashboard-stat__label {
  font-size: 11px;
  color: var(--c-gray);
  margin-top: 4px;
}

/* ---- MISSION ---- */
.mission__statement {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto var(--s-32);
}

/* ---- PRODUCTS SECTIONS ---- */
.product-section {
  margin-bottom: var(--s-80);
}

.product-section__letter {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 800;
  color: var(--c-teal);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -40px;
}

.product-section__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--s-12);
}

.product-section__badge {
  display: block;
  font-size: var(--fs-label);
  color: var(--c-gray);
  letter-spacing: 3px;
  margin-bottom: var(--s-8);
}

.product-section__desc {
  font-size: var(--fs-body);
  color: var(--c-gray);
  margin-bottom: var(--s-32);
  max-width: 600px;
}

.product-section__desc--long {
  max-width: 800px;
  line-height: 1.8;
  margin-bottom: var(--s-32);
}

.product-section__tagline {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  margin-bottom: var(--s-16);
}

.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-gray-dim);
  border-radius: var(--radius-lg);
  padding: var(--s-32);
  transition: all var(--duration-normal);
}

.product-card:hover {
  border-color: rgba(91, 95, 199, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(91, 95, 199, 0.08);
}

.product-card__icon {
  font-size: 36px;
  margin-bottom: var(--s-16);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--s-8);
}

.product-card__desc {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  line-height: 1.6;
}

/* ---- INTEGRATIONS ---- */
.integrations-marquee {
  overflow: hidden;
  padding: var(--s-32) 0;
}

.integrations-track {
  display: flex;
  gap: var(--s-48);
  align-items: center;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.integrations-track--reverse {
  animation-direction: reverse;
  margin-top: var(--s-24);
}

.integration-logo {
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--duration-normal);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-gray);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.integrations-marquee:hover .integration-logo {
  opacity: 0.7;
  filter: grayscale(0);
}

.integrations-count {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-teal);
  text-align: center;
  margin-top: var(--s-32);
}

/* ---- CASE STUDY ---- */
.case-study__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-teal-dim);
  border: 1px solid var(--c-teal);
  border-radius: var(--radius-full);
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--c-teal);
  margin-bottom: var(--s-16);
}

.case-study__result {
  display: flex;
  align-items: baseline;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}

.case-study__result-value {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--c-teal);
}

.case-study__result-label {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
}

/* ---- FOUNDERS ---- */
.founders-grid {
  display: flex;
  gap: var(--s-48);
  justify-content: center;
  margin-top: var(--s-48);
}

.founder-card {
  text-align: center;
  max-width: 280px;
}

.founder-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-surface), var(--c-surface-2));
  border: 2px solid transparent;
  background-clip: padding-box;
  margin: 0 auto var(--s-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  box-shadow: 0 0 0 2px var(--c-teal), 0 0 30px var(--c-teal-glow);
  transition: box-shadow 0.4s var(--ease-out);
}

.founder-card:hover .founder-card__avatar {
  box-shadow: 0 0 0 2px var(--c-teal-vivid), 0 0 50px var(--c-teal-glow);
}

.founder-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.founder-card__role {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  margin-bottom: var(--s-12);
}

.founder-card__bio {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  line-height: 1.6;
}

/* ---- RESOURCES ---- */
.resource-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.resource-card:hover {
  border-color: rgba(91, 95, 199, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevation-3), 0 0 80px rgba(91, 95, 199, 0.06);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card__thumb {
  height: 160px;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.resource-card__body {
  padding: var(--s-24);
}

.resource-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--s-8);
}

.resource-card__desc {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  line-height: 1.6;
}

/* ---- FINAL CTA ---- */
.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 95, 199, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(91, 95, 199, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 95, 199, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ---- PS SECTION ---- */
.ps-section {
  font-size: var(--fs-body);
  color: var(--c-gray);
  line-height: 1.8;
}

.ps-section strong {
  color: var(--c-white);
  font-weight: 600;
}

.ps-section .ps-label {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--c-coral);
  margin-bottom: var(--s-16);
  display: block;
}

/* ---- NEWSLETTER FORM ---- */
.newsletter-form {
  display: flex;
  gap: var(--s-12);
  max-width: 480px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--s-12) var(--s-20);
  background: var(--c-dark);
  border: 1px solid var(--c-gray-dim);
  border-radius: var(--radius-sm);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 14px;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--c-gray);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--c-teal);
  box-shadow: 0 0 10px var(--c-teal-glow);
}

.newsletter-form button {
  padding: var(--s-12) var(--s-24);
  background: var(--c-teal);
  color: var(--c-dark);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-normal);
}

.newsletter-form button:hover {
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

/* ---- SEZIONE X (ELITE) ---- */
.elite-section {
  background: var(--c-dark);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--s-48);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.elite-section::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent 40%, transparent 60%, rgba(255, 215, 0, 0.05));
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.elite-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.03), transparent 30%);
  animation: elite-rotate 8s linear infinite;
  pointer-events: none;
}

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

.elite-section__badge {
  display: inline-flex;
  padding: 6px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-full);
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--s-24);
}

/* ---- RESPONSIVE SECTIONS ---- */
@media (max-width: 768px) {
  .hero { padding: var(--s-80) 0 var(--s-56); }
  .hero__glow--1 { width: 400px; height: 400px; }
  .hero__glow--2 { width: 300px; height: 300px; }
  .hero-typewriter { font-size: clamp(32px, 8vw, 56px); }

  .founders-grid { flex-direction: column; align-items: center; }
  .product-section__letter { font-size: 80px; }
  .dashboard-bars { height: 120px; }

  .newsletter-form { flex-direction: column; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-typewriter { font-size: clamp(28px, 10vw, 44px); }
  .elite-section { padding: var(--s-32); }
}

/* ---- PRICING SECTION ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--s-40) var(--s-32);
  backdrop-filter: blur(var(--glass-blur));
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 95, 199, 0.15);
  box-shadow: var(--shadow-elevation-2);
}

.pricing-card--featured {
  border-color: rgba(91, 95, 199, 0.3);
  background: linear-gradient(180deg, rgba(91, 95, 199, 0.06) 0%, var(--glass-bg) 100%);
  box-shadow: 0 0 60px rgba(91, 95, 199, 0.08);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 80px rgba(91, 95, 199, 0.12), var(--shadow-elevation-2);
}

.pricing-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--grad-teal);
  color: white;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: var(--s-24);
}

.pricing-card__icon {
  font-size: 32px;
  margin-bottom: var(--s-12);
}

.pricing-card__badge {
  font-size: var(--fs-h4);
  font-weight: 800;
  color: var(--c-white);
  display: block;
  margin-bottom: var(--s-4);
}

.pricing-card__badge--featured {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__subtitle {
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-teal);
  display: block;
  margin-bottom: var(--s-12);
}

.pricing-card__desc {
  color: var(--c-gray);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  padding-bottom: var(--s-24);
  border-bottom: 1px solid var(--c-gray-line);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-32);
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}

.pricing-card__features li {
  font-size: var(--fs-body-sm);
  color: var(--c-gray);
  padding-left: var(--s-24);
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--c-teal);
  border-radius: 50%;
  opacity: 0.6;
}

.pricing-card__features {
  padding-top: var(--s-24);
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .pricing-card--featured {
    transform: none;
    order: -1;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}
