/* ================================================================
   WEBAPPTOWN DESIGN SYSTEM - SECTIONS
   Page Section Styles
   ================================================================ */

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-16)) var(--space-6) var(--space-16);
  overflow: hidden;
  background: var(--color-primary);
}

/* Neural Mesh Background (canvas positioned here) */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

/* Gradient Orbs */
.hero-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 20s ease-in-out infinite;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(13, 148, 136, 0.3);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: rgba(34, 211, 238, 0.2);
  top: 60%;
  right: -15%;
  animation-delay: -7s;
}

.hero-orb--3 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.25);
  bottom: -10%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Grid Overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-xl);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

.hero-badge--right {
  align-self: flex-end;
  margin-bottom: var(--space-4);
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-wide);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-6);
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title .highlight {
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Typing animation container */
.hero-typing {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--color-ai);
}

.hero-typing::before {
  content: '>';
  color: var(--color-text-muted);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--color-ai);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Products Showcase */
.hero-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-product-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition-base);
  transform-style: preserve-3d;
  opacity: 1;
  flex-wrap: nowrap;
}

.hero-product-card .hero-product-info {
  flex: 1;
  min-width: 0;
}

.hero-product-card .badge-live {
  flex-shrink: 0;
  margin-left: auto;
}

.hero-product-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border-strong);
  transform: translateX(8px);
}

.hero-product-card img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.hero-product-card .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: white;
}

.hero-product-info {
  flex: 1;
}

.hero-product-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.hero-product-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------------
   AI CAPABILITIES SECTION (BENTO GRID)
   ---------------------------------------------------------------- */

.ai-section {
  position: relative;
  padding: var(--space-32) var(--space-6);
  background: var(--color-primary);
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.ai-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Bento Grid Items */
.ai-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  overflow: hidden;
}

.ai-card:hover:not(.ai-card--has-video) {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
}

/* Flip card with video: hover to show video, click to play and keep */
.ai-card--has-video {
  position: relative;
  min-height: 280px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s;
  border-radius: var(--radius-2xl) !important;
  overflow: hidden !important;
  border: 1px solid var(--color-border);
}

.ai-card--has-video:hover {
  transform: scale(1.25) !important;
  z-index: 10;
}

.ai-card-flip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.ai-card--has-video:hover .ai-card-flip {
  transform: rotateY(180deg);
}

.ai-card-front,
.ai-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-2xl);
}

.ai-card-front {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  z-index: 1;
  padding: var(--space-8);
  position: relative;
}

.ai-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  padding: var(--space-4);
}

.ai-card-hint {
  font-size: var(--text-xs);
  opacity: 0.8;
}

/* Desktop: hint in top-right, transparent with teal border */
.ai-card-hint.desktop-hint {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  color: var(--brand-teal);
  background: transparent;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--brand-teal);
  border-radius: var(--radius-md);
  z-index: 5;
  font-weight: var(--weight-medium);
}

.ai-card-hint.mobile-hint {
  display: none;
}

.ai-card-back .ai-card-video {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
}

/* Main visual - spans full width on top */
.ai-card--main {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.ai-card--main .ai-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-6);
}

/* Small cards - span 1 column each */
.ai-card--sm {
  grid-column: span 1;
}

/* Half cards - span 1.5 columns to fill the 3-column grid symmetrically */
.ai-card--half {
  grid-column: span 1;
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  color: var(--color-accent-light);
}

.ai-card-icon svg {
  width: 24px;
  height: 24px;
}

.ai-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.ai-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.ai-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.ai-card-tag {
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--color-ai);
  background: rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-full);
}

/* Video inside AI cards (iframe or HTML5 video) */
.ai-card-video {
  margin-top: var(--space-6);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.ai-card-video iframe,
.ai-card-video video,
.ai-card-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  vertical-align: top;
}

.ai-card-back .ai-card-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* Small cards: compact video so text stays visible */
.ai-card--sm .ai-card-video {
  margin-top: var(--space-4);
  max-height: 180px;
  aspect-ratio: 16 / 9;
}

.ai-card--sm .ai-card-video iframe,
.ai-card--sm .ai-card-video video,
.ai-card--sm .ai-card-video img {
  object-fit: cover;
}

/* ----------------------------------------------------------------
   PRODUCTS SHOWCASE SECTION
   ---------------------------------------------------------------- */

.products-section {
  position: relative;
  padding: var(--space-32) var(--space-6);
  background: var(--color-primary-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.product-showcase-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.product-showcase-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.product-showcase-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-primary);
}

.product-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-showcase-card:hover .product-showcase-image img {
  transform: scale(1.05);
}

.product-showcase-content {
  padding: var(--space-6);
}

.product-showcase-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: nowrap;
}

.product-showcase-header .badge-live {
  flex-shrink: 0;
  margin-left: auto;
}

.product-showcase-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.product-showcase-header > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.product-showcase-header .product-showcase-logo,
.product-showcase-header > div:first-child {
  flex-shrink: 0;
}

.product-showcase-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
}

.product-showcase-header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.product-showcase-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.product-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.product-showcase-metrics {
  display: flex;
  gap: var(--space-6);
}

.product-metric {
  text-align: left;
}

.product-metric-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.product-metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------------
   PROCESS / HOW WE WORK SECTION
   ---------------------------------------------------------------- */

.process-section {
  position: relative;
  padding: var(--space-32) var(--space-6);
  background: var(--color-primary);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

/* Animated line (controlled by JS) */
.process-timeline-progress {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--gradient-accent);
  transition: height 0.1s linear;
}

.process-step {
  position: relative;
  display: flex;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  opacity: 0.4;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.process-step.active {
  opacity: 1;
  transform: translateY(0);
}

.process-step-marker {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  z-index: 1;
}

.process-step.active .process-step-marker {
  background: var(--gradient-accent);
  border-color: var(--color-accent);
  color: var(--color-text);
}

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.process-step-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ----------------------------------------------------------------
   SOCIAL PROOF / CLIENTS SECTION
   ---------------------------------------------------------------- */

.clients-section {
  position: relative;
  padding: var(--space-24) var(--space-6);
  background: var(--color-primary-light);
  overflow: hidden;
}

/* Logo Marquee */
.clients-marquee {
  display: flex;
  gap: var(--space-16);
  animation: marquee 30s linear infinite;
}

.clients-marquee-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  flex-shrink: 0;
  height: 32px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Stats */
.clients-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-top: var(--space-12);
}

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

.client-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ----------------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------------- */

.cta-section {
  position: relative;
  padding: var(--space-32) var(--space-6);
  background: var(--color-primary);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */

.footer {
  position: relative;
  padding: var(--space-16) var(--space-6) var(--space-8);
  background: var(--color-primary-dark);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-top: var(--space-8);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--color-ai);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-full);
}

/* ----------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: none;
  }
  
  .hero-description {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-products {
    max-width: 500px;
    margin: var(--space-12) auto 0;
  }
  
  .ai-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-card--main,
  .ai-card--sm,
  .ai-card--half {
    grid-column: span 1;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: calc(70px + var(--space-8)) var(--space-4) var(--space-8);
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .clients-stats {
    flex-wrap: wrap;
    gap: var(--space-8);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  /* Mobile: disable hover flip, only click works */
  .ai-card--has-video:hover .ai-card-flip {
    transform: rotateY(0deg);
  }
  
  .ai-card--has-video.is-flipped .ai-card-flip {
    transform: rotateY(180deg);
  }
  
  /* Mobile: scale only when flipped by click */
  .ai-card--has-video:hover {
    transform: none !important;
  }
  
  .ai-card--has-video.is-flipped {
    transform: scale(1.1) !important;
  }
  
  /* Mobile: show mobile hint, hide desktop hint */
  .ai-card-hint.desktop-hint {
    display: none;
  }
  
  .ai-card-hint.mobile-hint {
    display: block;
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .section-subtitle {
    font-size: var(--text-sm);
  }
  
  .hero-description {
    font-size: var(--text-base);
  }
  
  .ai-card {
    padding: var(--space-6);
  }
  
  .process-step {
    padding-left: var(--space-8);
  }
  
  .product-showcase-card {
    padding: var(--space-4);
  }
  
  .product-showcase-content {
    padding: var(--space-4);
  }
  
  .product-showcase-header {
    gap: var(--space-3);
  }
  
  .product-showcase-logo {
    width: 40px;
    height: 40px;
  }
  
  .product-showcase-header > div:first-child {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .hero-product-card {
    padding: var(--space-4);
    gap: var(--space-3);
  }
  
  .hero-product-card img,
  .hero-product-card .icon {
    width: 44px;
    height: 44px;
  }
}
