/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */

/* ==========================================================================
   Homepage
   ========================================================================== */

/* Hero Grid Pattern — Subtle dot texture */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.25) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

/* Pulse animation for status dot */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(6, 214, 160, 0); }
}

/* Hero Layout — Two-column with illustration */
.hero--home .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}

.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero--home .container {
    grid-template-columns: 1fr;
  }
  .hero__illustration {
    display: none;
  }
}

/* Card gradient top-border on hover */
.card--hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Noise/grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* Blog card gradient placeholder headers */
.card--hover .card__meta + .card__title {
  margin-top: 0;
}

/* Homepage hero - taller, dramatic gradient */
.hero--home {
  min-height: 92vh;
  overflow: hidden;
}

.hero--home::before {
  background: linear-gradient(160deg, #030810 0%, #0C1B33 25%, #122850 50%, #1A3F70 75%, #1565C0 100%);
}

.hero--home::after {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(ellipse at 70% 40%, rgba(59, 130, 246, 0.2) 0%, rgba(6, 214, 160, 0.08) 40%, transparent 70%);
}

/* Aurora color bands */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__aurora-band {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: auroraShift 12s ease-in-out infinite;
}

.hero__aurora-band--1 {
  width: 600px;
  height: 300px;
  background: rgba(59, 130, 246, 0.15);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.hero__aurora-band--2 {
  width: 500px;
  height: 250px;
  background: rgba(6, 214, 160, 0.12);
  top: 40%;
  right: 10%;
  animation-delay: 4s;
}

.hero__aurora-band--3 {
  width: 400px;
  height: 200px;
  background: rgba(124, 77, 255, 0.1);
  bottom: 15%;
  left: 40%;
  animation-delay: 8s;
}

@keyframes auroraShift {
  0%, 100% { opacity: 0; transform: translateX(0) scale(1); }
  20% { opacity: 0.7; }
  50% { opacity: 0.5; transform: translateX(40px) scale(1.15); }
  80% { opacity: 0.7; }
}

.hero--home .hero__content {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

/* Hero Floating Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 12s ease-in-out infinite;
}

.hero__particle--1 {
  width: 6px; height: 6px;
  background: #3B82F6;
  top: 20%; left: 10%;
  animation-delay: 0s;
}
.hero__particle--2 {
  width: 4px; height: 4px;
  background: #06D6A0;
  top: 60%; left: 85%;
  animation-delay: 2s;
}
.hero__particle--3 {
  width: 8px; height: 8px;
  background: rgba(59,130,246,0.5);
  top: 80%; left: 30%;
  animation-delay: 4s;
}
.hero__particle--4 {
  width: 5px; height: 5px;
  background: rgba(6,214,160,0.6);
  top: 15%; left: 70%;
  animation-delay: 6s;
}
.hero__particle--5 {
  width: 3px; height: 3px;
  background: #3B82F6;
  top: 45%; left: 50%;
  animation-delay: 8s;
}
.hero__particle--6 {
  width: 10px; height: 10px;
  background: rgba(59,130,246,0.3);
  top: 30%; left: 60%;
  animation-delay: 1s;
  filter: blur(1px);
}
.hero__particle--7 {
  width: 7px; height: 7px;
  background: rgba(6,214,160,0.4);
  top: 70%; left: 20%;
  animation-delay: 5s;
}
.hero__particle--8 {
  width: 12px; height: 12px;
  background: rgba(124,77,255,0.2);
  top: 50%; left: 75%;
  animation-delay: 3s;
  filter: blur(2px);
}

@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  15% { opacity: 0.7; }
  50% { opacity: 0.4; transform: translateY(-80px) translateX(30px) scale(1.2); }
  85% { opacity: 0.7; }
}

/* ==========================================================================
   AI Assistant Mockup (Hero)
   ========================================================================== */

.ai-mockup {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.ai-mockup__window {
  background: rgba(12, 27, 51, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(59,130,246,0.15),
    0 0 120px rgba(6,214,160,0.05);
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite, mockupBorderGlow 5s ease-in-out infinite;
}

@keyframes mockupBorderGlow {
  0%, 100% {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(59,130,246,0.15);
  }
  50% {
    border-color: rgba(6, 214, 160, 0.2);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 60px rgba(0,0,0,0.4), 0 0 100px rgba(6,214,160,0.12), 0 0 60px rgba(59,130,246,0.1);
  }
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ai-mockup__titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ai-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ai-mockup__dot--red { background: #FF5F56; }
.ai-mockup__dot--yellow { background: #FFBD2E; }
.ai-mockup__dot--green { background: #27C93F; }

.ai-mockup__titlebar-text {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-mockup__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-mockup__message {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  animation: messageSlide 0.6s ease-out both;
}

.ai-mockup__message--user {
  align-self: flex-end;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: rgba(255,255,255,0.9);
  animation-delay: 0.5s;
}

.ai-mockup__message--ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 10px;
  animation-delay: 1.2s;
}

@keyframes messageSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-mockup__avatar {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3B82F6, #06D6A0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
}

.ai-mockup__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.ai-mockup__action-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.25);
  color: #7CB3F9;
  cursor: default;
}

.ai-mockup__action-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.ai-mockup__typing {
  display: flex;
  gap: 4px;
  padding: 8px 14px;
  animation: messageSlide 0.6s ease-out 2s both;
}

.ai-mockup__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59,130,246,0.4);
  animation: typingDot 1.4s ease-in-out infinite;
}

.ai-mockup__typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-mockup__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.2); }
}

/* Floating badges around mockup */
.ai-mockup__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 2;
}

.ai-mockup__badge--transcript {
  top: 10%;
  right: -30px;
  background: rgba(6, 214, 160, 0.15);
  border: 1px solid rgba(6, 214, 160, 0.25);
  color: #06D6A0;
  animation-delay: 0s;
}

.ai-mockup__badge--sentiment {
  bottom: 30%;
  left: -40px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #7CB3F9;
  animation-delay: 1.5s;
}

.ai-mockup__badge--recording {
  bottom: 5%;
  right: -20px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  animation-delay: 3s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==========================================================================
   AI Showcase Section — Bento Grid
   ========================================================================== */

.ai-showcase {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.ai-showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.ai-bento__card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s;
}

.ai-bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.ai-bento__card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ai-bento__card--medium {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.ai-bento__card--small {
  grid-column: span 2;
}

.ai-bento__card--wide {
  grid-column: 1 / -1;
}

.ai-bento__card--dark {
  background: var(--bg-dark);
  border-color: rgba(59,130,246,0.15);
  color: var(--text-on-dark);
}

.ai-bento__card--dark:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(59,130,246,0.08);
}

.ai-bento__card--dark .ai-bento__text {
  color: var(--text-on-dark-muted);
}

.ai-bento__card--gradient {
  background: linear-gradient(135deg, #0C1B33 0%, #162D50 100%);
  border-color: rgba(59,130,246,0.12);
  color: var(--text-on-dark);
}

.ai-bento__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59,130,246,0.1);
  color: #3B82F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ai-bento__icon-wrap--teal {
  background: rgba(6,214,160,0.1);
  color: #06D6A0;
}

.ai-bento__icon-wrap--accent {
  background: rgba(59,130,246,0.1);
  color: #3B82F6;
}

.ai-bento__card--dark .ai-bento__icon-wrap {
  background: rgba(59,130,246,0.15);
}

.ai-bento__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: inherit;
}

.ai-bento__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* AI transcript visual inside bento card */
.ai-bento__visual--transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-transcript-line {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
  animation: transcriptFade 0.5s ease-out both;
}

.ai-transcript-line--1 {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  animation-delay: 0.3s;
}

.ai-transcript-line--2 {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.15);
  color: rgba(255,255,255,0.8);
  animation-delay: 0.6s;
}

.ai-transcript-line--3 {
  background: linear-gradient(135deg, rgba(6,214,160,0.1), rgba(59,130,246,0.08));
  border: 1px solid rgba(6,214,160,0.2);
  color: #06D6A0;
  font-weight: 500;
  animation-delay: 1s;
}

@keyframes transcriptFade {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.ai-transcript-speaker {
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ai-transcript-speaker--you {
  color: rgba(59,130,246,0.7);
}

.ai-transcript-summary {
  font-size: 0.72rem;
}

/* Stat inside bento card */
.ai-bento__stat {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.ai-bento__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ai-bento__stat-suffix {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-bento__stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Wide stats row */
.ai-bento__stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 0.5rem 0;
}

.ai-bento__stat-block {
  text-align: center;
}

.ai-bento__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.ai-bento__stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #06D6A0;
}

.ai-bento__stat-desc {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.375rem;
}

.ai-bento__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Responsive: bento grid */
@media (max-width: 1024px) {
  .ai-bento {
    grid-template-columns: 1fr 1fr;
  }
  .ai-bento__card--large {
    grid-column: 1 / -1;
  }
  .ai-bento__card--medium {
    grid-column: 1 / -1;
  }
  .ai-bento__card--wide {
    grid-column: 1 / -1;
  }
  .ai-bento__card--small {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .ai-bento {
    grid-template-columns: 1fr;
  }
  .ai-bento__card--large {
    grid-template-columns: 1fr;
  }
  .ai-bento__card--small {
    grid-column: span 1;
  }
  .ai-bento__stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ai-bento__stat-divider {
    width: 48px;
    height: 1px;
  }
  .ai-mockup__badge {
    display: none;
  }
}

/* ==========================================================================
   Product Pages - Hero Gradient Variants
   ========================================================================== */

.hero--product {
  min-height: 50vh;
}

.hero--product .hero__content {
  padding: var(--space-2xl) 0;
}

.hero--product .hero__title {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
}

.hero--cloudya::before {
  background: linear-gradient(160deg, #060E1A 0%, #0D2A4A 40%, #1565C0 100%);
}

.hero--cloudya::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.18) 0%, transparent 60%);
}

.hero--nvoice::before {
  background: linear-gradient(160deg, #060E1A 0%, #0C2A3A 40%, #00695C 100%);
}

.hero--nvoice::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(6, 214, 160, 0.15) 0%, transparent 60%);
}

.hero--contact-center::before {
  background: linear-gradient(160deg, #060E1A 0%, #121B4A 50%, #283593 100%);
}

.hero--contact-center::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(92, 107, 192, 0.15) 0%, transparent 60%);
}

.hero--teams::before {
  background: linear-gradient(160deg, #060E1A 0%, #1A2B50 40%, #4527A0 100%);
}

.hero--teams::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(103, 58, 183, 0.15) 0%, transparent 60%);
}

.hero--hardware::before {
  background: linear-gradient(160deg, #060E1A 0%, #1A2530 50%, #37474F 100%);
}

.hero--hardware::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(176, 190, 197, 0.1) 0%, transparent 60%);
}

/* ==========================================================================
   Product Detail Layout
   ========================================================================== */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.product-detail__main {
  min-width: 0;
}

.product-detail__sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.product-detail__sidebar .card {
  padding: var(--space-lg);
}

.product-pricing {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.product-pricing__amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.product-pricing__period {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.product-pricing__note {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* Feature Checklist */
.feature-checklist {
  list-style: none;
  padding: 0;
}

.feature-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-checklist__item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-secondary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2300BFA5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 6 3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 0.125rem;
}

/* Channel Visualization */
.channel-vis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  position: relative;
}

.channel-vis__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.channel-vis__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.channel-vis__icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.2);
}

.channel-vis__icon svg {
  width: 32px;
  height: 32px;
}

.channel-vis__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.channel-vis__connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  flex-shrink: 0;
}

/* ==========================================================================
   Service Pages
   ========================================================================== */

.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.service-overview__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-overview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-benefit:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--border-hover);
}

.service-benefit__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-benefit__icon svg {
  width: 24px;
  height: 24px;
}

.service-benefit__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.service-benefit__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.about-value {
  text-align: center;
  padding: var(--space-lg);
}

.about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(0, 191, 165, 0.08));
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.about-value__icon svg {
  width: 36px;
  height: 36px;
}

.about-value__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.about-value__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ==========================================================================
   References Page
   ========================================================================== */

.references-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.reference-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

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

.reference-card__logo {
  padding: var(--space-lg);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.reference-card__logo img {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
}

.reference-card__body {
  padding: var(--space-md);
}

.reference-card__industry {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.reference-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.reference-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */

.faq-page__search {
  margin-bottom: var(--space-xl);
}

.faq-page__categories {
  margin-bottom: var(--space-lg);
}

.faq-page__section {
  margin-bottom: var(--space-xl);
}

.faq-page__section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--border);
}

.faq-page__no-results {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-secondary);
}

.faq-page__no-results-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.3;
}

/* ==========================================================================
   Career Page
   ========================================================================== */

.career-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.career-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.career-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.benefit-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Job Listings */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.job-listings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.job-listings__count {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.job-listings__count strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   Blog Page
   ========================================================================== */

.blog-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.blog-page__pagination {
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   Blog Article Page
   ========================================================================== */

.article-header {
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.article-header__category {
  font-weight: 600;
  color: var(--color-accent);
}

.article-header__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.article-header__excerpt {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.article-cover {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

/* Article share bar */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: var(--space-2xl) 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-share__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.article-share__links {
  display: flex;
  gap: var(--space-xs);
}

.article-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.article-share__link:hover {
  background-color: var(--color-accent);
  color: var(--text-on-dark);
}

.article-share__link svg {
  width: 18px;
  height: 18px;
}

/* Related articles */
.related-articles {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-form-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--card-shadow);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 0.125rem;
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--color-accent);
}

.contact-info__value a:hover {
  text-decoration: underline;
}

/* Map placeholder */
.contact-map {
  width: 100%;
  height: 300px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--text-sm);
  overflow: hidden;
  margin-top: var(--space-lg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz, AGB)
   ========================================================================== */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-page h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border);
}

.legal-page h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-page p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page ul li {
  list-style-type: disc;
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-page ol li {
  list-style-type: decimal;
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--color-accent-hover);
}

.legal-page__last-updated {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Hardware Catalog
   ========================================================================== */

.hardware-catalog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hardware-catalog__count {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.hardware-catalog__count strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hardware-catalog__sort {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hardware-catalog__sort label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  white-space: nowrap;
}

.hardware-catalog__sort select {
  padding: 0.375rem 2rem 0.375rem 0.75rem;
  font-size: var(--text-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235A6370' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m5 7 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
}

/* Hardware Product Card */
.hardware-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
}

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

.hardware-card__image {
  background-color: var(--bg-secondary);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.hardware-card__image img {
  max-height: 160px;
  object-fit: contain;
}

.hardware-card__body {
  padding: var(--space-md);
}

.hardware-card__brand {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.hardware-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.hardware-card__specs {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.hardware-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.hardware-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.hardware-card__price-note {
  font-size: var(--text-xs);
  color: var(--text-light);
  font-weight: 400;
}

/* ==========================================================================
   MS Teams Integration Page
   ========================================================================== */

.teams-comparison {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
}

.teams-comparison .comparison-table {
  min-width: 600px;
}

.teams-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.teams-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.teams-feature:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--border-hover);
}

.teams-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(103, 58, 183, 0.1);
  color: #7C4DFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teams-feature__icon svg {
  width: 24px;
  height: 24px;
}

.teams-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.teams-feature__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Error Pages (404, etc.)
   ========================================================================== */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-page__code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-page__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.error-page__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Homepage Design Upgrade — Section-Specific Layouts
   ========================================================================== */

/* Product Bento Layout */
.product-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-bento .card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-bento .card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.product-bento__featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #0C1B33 0%, #162D50 80%, #1E4070 100%);
  color: var(--text-on-dark);
  border-color: rgba(59, 130, 246, 0.15);
}

.product-bento__featured:hover {
  border-color: rgba(59, 130, 246, 0.4);
  animation-play-state: paused;
}

.product-bento__featured .card__title {
  font-size: var(--text-2xl);
  color: var(--text-on-dark);
}

.product-bento__featured .card__text {
  color: var(--text-on-dark-muted);
  font-size: var(--text-base);
}

.product-bento__featured .card__icon {
  background: rgba(59, 130, 246, 0.15);
  color: #7CB3F9;
}

.product-bento__featured .card__link {
  color: #7CB3F9;
}

.product-bento__highlight {
  border-left: 3px solid #06D6A0;
}

.product-bento__highlight .card__icon {
  background: rgba(6, 214, 160, 0.1);
  color: #06D6A0;
}

/* IT-Services Section */
.section--services {
  position: relative;
  background: linear-gradient(180deg, #E8EDF4 0%, #F0F4F8 40%, #F5F7FA 100%);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--space-3xl) + 40px);
}

/* IT-Service Cards — Colored icon containers + border */
.card--border-blue { border-left: 3px solid #3B82F6; }
.card--border-teal { border-left: 3px solid #06D6A0; }
.card--border-purple { border-left: 3px solid #7C4DFF; }
.card--border-orange { border-left: 3px solid #F59E0B; }

.card--border-blue .card__icon { background: rgba(59,130,246,0.08); border-radius: var(--radius-md); }
.card--border-teal .card__icon { background: rgba(6,214,160,0.08); border-radius: var(--radius-md); }
.card--border-purple .card__icon { background: rgba(124,77,255,0.08); border-radius: var(--radius-md); }
.card--border-orange .card__icon { background: rgba(245,158,11,0.08); border-radius: var(--radius-md); }

.card--border-blue .card__icon svg { color: #3B82F6; }
.card--border-teal .card__icon svg { color: #06D6A0; }
.card--border-purple .card__icon svg { color: #7C4DFF; }
.card--border-orange .card__icon svg { color: #F59E0B; }

/* IT-Service Cards hover */
.card--border-blue:hover { border-left-color: #2563EB; box-shadow: var(--shadow-lg); }
.card--border-teal:hover { border-left-color: #05B588; box-shadow: var(--shadow-lg); }
.card--border-purple:hover { border-left-color: #651FFF; box-shadow: var(--shadow-lg); }
.card--border-orange:hover { border-left-color: #D97706; box-shadow: var(--shadow-lg); }

[class*="card--border-"]:hover {
  transform: translateY(-2px);
  transition: all var(--transition-base);
}

/* USPs Asymmetric Layout */
.usps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.usps-grid .feature-item {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-base);
  border: 1px solid transparent;
  background: var(--bg-primary);
}

.usps-grid .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59,130,246,0.1);
  background: linear-gradient(180deg, rgba(59,130,246,0.02) 0%, var(--bg-primary) 100%);
}

.usps-grid .feature-item__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(6,214,160,0.08));
  border-radius: 50%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.usps-grid .feature-item__icon svg {
  width: 30px;
  height: 30px;
}

.usps-grid .feature-item:hover .feature-item__icon {
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(59,130,246,0.15);
}

.usp-card--accent {
  background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, rgba(59,130,246,0.01) 100%);
  border-color: rgba(59,130,246,0.15);
}

.usp-card--accent .feature-item__icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.08));
}

/* Section Decorations */
.section-deco {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.section-deco__circle {
  position: absolute;
  top: -40px;
  right: -60px;
  opacity: 0.6;
}

.section-deco__line {
  position: absolute;
  top: 60px;
  right: 40px;
  opacity: 0.8;
}

/* Testimonials Featured Layout */
.testimonials-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
}

.testimonials-featured .testimonial-card:first-child {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card--featured {
  border-top: 3px solid transparent;
  border-image: linear-gradient(135deg, #3B82F6, #06D6A0) 1;
  border-image-slice: 1;
  box-shadow: 0 4px 20px rgba(59,130,246,0.08);
}

.testimonial-card--featured .testimonial-card__quote {
  font-size: var(--text-lg);
  line-height: 1.7;
}

.testimonial-card--featured .testimonial-card__avatar {
  width: 56px;
  height: 56px;
  font-size: var(--text-lg);
}

/* Blog Featured Layout */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.blog-featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
}

.blog-featured-card__image {
  min-height: 280px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.blog-featured-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Wave Divider */
.section-wave {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  line-height: 0;
}

.section-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Decorative Blob */
.section-blob {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, rgba(6,214,160,0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-blob--right {
  left: auto;
  right: -200px;
  top: -80px;
  background: radial-gradient(circle, rgba(6,214,160,0.05) 0%, rgba(59,130,246,0.03) 40%, transparent 70%);
}

/* Wave Divider before CTA */
.section-wave--cta {
  background: var(--bg-secondary);
  margin-top: 0;
  margin-bottom: -2px;
  position: relative;
}

/* Glowing accent line at transitions */
.section-wave--cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), rgba(6,214,160,0.3), transparent);
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
}

/* Blog Card Hover Enhancements */
.blog-featured-card__image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.blog-featured-card:hover .blog-featured-card__image {
  transform: scale(1.03);
}

.card__image-placeholder {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.card--hover:hover .card__image-placeholder {
  transform: scale(1.03);
}

/* Blog Category Tags */
.card__tag {
  background: rgba(59,130,246,0.1);
  color: var(--color-accent);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  font-size: var(--text-xs);
}

/* Testimonials section enhanced background */
.section--testimonials {
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(6,214,160,0.03) 0%, transparent 50%),
              var(--bg-primary);
}

/* Process Section — Dark Theme */
.section--process {
  background: linear-gradient(180deg, #0C1B33 0%, #162D50 100%);
  color: var(--text-on-dark);
  position: relative;
}

.section--process .section-label {
  color: #06D6A0;
}

.section--process .section__title {
  color: var(--text-on-dark);
}

.section--process .section__subtitle {
  color: var(--text-on-dark-muted);
}

.section--process .process__number {
  background: linear-gradient(135deg, #3B82F6, #06D6A0);
  color: white;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3), 0 0 60px rgba(6, 214, 160, 0.1);
}

.section--process .process__title {
  color: var(--text-on-dark);
}

.section--process .process__text {
  color: var(--text-on-dark-muted);
}

.section--process .process__line {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.4), rgba(6, 214, 160, 0.2));
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

.section--process .process__icon {
  color: #7CB3F9;
}

/* Enhanced Micro-Interactions */
.card--hover {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.card__icon,
.feature-item__icon,
.ai-bento__icon-wrap {
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover .card__icon,
.feature-item:hover .feature-item__icon {
  transform: rotate(5deg);
}

/* ==========================================================================
   Atemberaubend — Premium Effects
   ========================================================================== */

/* Shimmering text-gradient animation */
@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__title .text-gradient {
  background: linear-gradient(135deg, #3B82F6 0%, #06D6A0 25%, #7C4DFF 50%, #3B82F6 75%, #06D6A0 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 6s ease-in-out infinite;
}

/* Animated border glow on featured product card */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(59,130,246,0.1);
  }
  33% {
    border-color: rgba(6, 214, 160, 0.2);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(6, 214, 160, 0.06), inset 0 1px 0 rgba(6,214,160,0.1);
  }
  66% {
    border-color: rgba(124, 77, 255, 0.2);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(124, 77, 255, 0.06), inset 0 1px 0 rgba(124,77,255,0.1);
  }
}

.product-bento__featured {
  animation: borderGlow 6s ease-in-out infinite;
}

/* Animated border on highlight card */
@keyframes borderGlowTeal {
  0%, 100% {
    border-left-color: #06D6A0;
    box-shadow: var(--shadow-md), -4px 0 20px rgba(6, 214, 160, 0.1);
  }
  50% {
    border-left-color: #3B82F6;
    box-shadow: var(--shadow-md), -4px 0 20px rgba(59, 130, 246, 0.1);
  }
}

.product-bento__highlight {
  animation: borderGlowTeal 4s ease-in-out infinite;
}

/* 3D perspective card hovers */
.product-bento .card--hover {
  perspective: 800px;
  transform-style: preserve-3d;
}

.product-bento .card--hover:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  box-shadow:
    var(--shadow-xl),
    0 20px 60px rgba(59, 130, 246, 0.1),
    0 0 40px rgba(59, 130, 246, 0.05);
}

/* Glow line between cards on hover */
.product-bento .card--hover:hover .card__icon {
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

/* Enhanced glow on featured card */
.product-bento__featured:hover {
  box-shadow:
    var(--shadow-2xl),
    0 0 80px rgba(59, 130, 246, 0.12),
    0 0 120px rgba(6, 214, 160, 0.06) !important;
}

/* Floating glow orbs for sections */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.glow-orb--blue {
  background: rgba(59, 130, 246, 0.08);
  width: 400px;
  height: 400px;
  animation: orbFloat 10s ease-in-out infinite;
}

.glow-orb--teal {
  background: rgba(6, 214, 160, 0.06);
  width: 350px;
  height: 350px;
  animation: orbFloat 13s ease-in-out infinite reverse;
}

.glow-orb--purple {
  background: rgba(124, 77, 255, 0.05);
  width: 300px;
  height: 300px;
  animation: orbFloat 11s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Pulsing CTA glow */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.2), inset 0 0 60px rgba(59, 130, 246, 0.05); }
  50% { box-shadow: 0 0 80px rgba(59, 130, 246, 0.3), inset 0 0 100px rgba(6, 214, 160, 0.05); }
}

/* Animated gradient background for CTA */
@keyframes ctaGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner {
  background: linear-gradient(160deg, #030810, #0C1B33, #162D50, #0C1B33, #030810);
  background-size: 300% 300%;
  animation: ctaGradientShift 8s ease-in-out infinite, ctaPulse 5s ease-in-out infinite;
}

/* Featured testimonial glow */
.testimonial-card--featured:hover {
  box-shadow:
    0 8px 40px rgba(59, 130, 246, 0.12),
    0 0 60px rgba(59, 130, 246, 0.06);
}

/* USP cards — subtle glow on hover */
.usps-grid .feature-item:hover .feature-item__icon {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2), 0 8px 20px rgba(59, 130, 246, 0.15);
}

/* AI Bento cards dramatic hover */
.ai-bento__card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(59, 130, 246, 0.08);
}

.ai-bento__card--dark:hover {
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(59, 130, 246, 0.12), 0 0 100px rgba(6, 214, 160, 0.06);
}

/* Blog card image shimmer overlay on hover */
.card__image-placeholder::after,
.blog-featured-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card--hover:hover .card__image-placeholder::after,
.blog-featured-card:hover .blog-featured-card__image::after {
  opacity: 1;
}

/* Stronger scroll entrance animations */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.animate-in .product-bento > *,
.animate-in .usps-grid > *,
.animate-in .blog-featured-grid > *,
.animate-in .testimonials-featured > * {
  opacity: 0;
  transform: translateY(24px);
  animation: staggerIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in .product-bento > *:nth-child(1),
.animate-in .usps-grid > *:nth-child(1),
.animate-in .blog-featured-grid > *:nth-child(1),
.animate-in .testimonials-featured > *:nth-child(1) { animation-delay: 0.1s; }

.animate-in .product-bento > *:nth-child(2),
.animate-in .usps-grid > *:nth-child(2),
.animate-in .blog-featured-grid > *:nth-child(2),
.animate-in .testimonials-featured > *:nth-child(2) { animation-delay: 0.2s; }

.animate-in .product-bento > *:nth-child(3),
.animate-in .usps-grid > *:nth-child(3),
.animate-in .blog-featured-grid > *:nth-child(3),
.animate-in .testimonials-featured > *:nth-child(3) { animation-delay: 0.3s; }

.animate-in .product-bento > *:nth-child(4) { animation-delay: 0.4s; }
.animate-in .product-bento > *:nth-child(5) { animation-delay: 0.5s; }
.animate-in .product-bento > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero content entrance — dramatic slide up */
.hero--home .hero__content {
  animation: heroContentIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero illustration entrance — float in from right */
.hero--home .hero__illustration {
  animation: heroIllustrationIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes heroIllustrationIn {
  from {
    opacity: 0;
    transform: translateX(40px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Enhanced link arrows — slide on hover */
.card__link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Animated section label line */
.section-label::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  margin-right: 0.75rem;
  vertical-align: middle;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in .section-label::before,
.animate .section-label::before {
  width: 24px;
}
