/* ===== Landing motion (page-landing only) ===== */

.page-landing {
  overflow-x: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-landing [data-reveal],
  .page-landing .hero-blob,
  .page-landing .text-shimmer,
  .page-landing .animate-gradient,
  .page-landing .pulse-cta,
  .page-landing .eyebrow-pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Topbar scroll state */
.topbar-landing {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.topbar-landing.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97) !important;
}

/* Hero ambient blobs */
.marketplace-hero {
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s linear;
}
.hero-blob-1 {
  width: 320px;
  height: 320px;
  background: rgba(240, 80, 83, 0.2);
  top: -80px;
  right: 10%;
}
.hero-blob-2 {
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.12);
  bottom: 0;
  left: -60px;
}
.hero-ref-grid,
.services-section-wow .container {
  position: relative;
  z-index: 1;
}

/* Scroll reveal */
.page-landing [data-reveal] {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.page-landing .reveal-up {
  transform: translateY(36px);
  filter: blur(4px);
}
.page-landing .reveal-fade {
  transform: translateY(12px);
}
.page-landing .reveal-scale {
  transform: scale(0.96) translateY(20px);
}
.page-landing [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Text effects */
.text-shimmer {
  background: linear-gradient(90deg, var(--c-coral) 0%, #ff9a8b 40%, var(--c-coral) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  to { background-position: 200% center; }
}

.typewriter-cursor {
  color: var(--c-coral);
  font-weight: 300;
  animation: blinkCursor 0.9s step-end infinite;
  margin-left: 2px;
}
@keyframes blinkCursor {
  50% { opacity: 0; }
}
.hero-lead {
  min-height: 3.2em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

/* CTA card float */
.hero-cta-card {
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.page-landing .hero-cta-card.is-visible,
.page-landing .hero-cta-card.reveal-scale.is-visible {
  animation: floatCard 6s ease-in-out infinite;
}

.step-pop {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--step-delay, 0ms);
}
.step-pop.is-popped {
  opacity: 1;
  transform: none;
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(240, 80, 83, 0.35);
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.btn-glow:hover {
  box-shadow: 0 8px 28px rgba(240, 80, 83, 0.45);
  transform: translateY(-2px);
}
.pulse-cta {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(240, 80, 83, 0.35); }
  50% { box-shadow: 0 6px 32px rgba(240, 80, 83, 0.55); }
}

/* Services WOW section */
.services-section-wow {
  position: relative;
  overflow: hidden;
}
.services-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 90vw);
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(240, 80, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-headline-wow {
  margin-bottom: 3rem !important;
  padding: 2rem 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0) 100%);
}

.wow-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem) !important;
  line-height: 1.15 !important;
  margin: 0.75rem 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.wow-line {
  display: block;
}
.wow-gradient {
  background: linear-gradient(135deg, var(--c-coral) 0%, #ff7b6e 50%, #f05053 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.animate-gradient {
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.wow-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-top: 0.75rem;
  min-height: 1.6em;
}

.eyebrow-pulse {
  animation: eyebrowPulse 2.5s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 80, 83, 0); }
  50% { box-shadow: 0 0 0 6px rgba(240, 80, 83, 0.12); }
}

/* Service cards enhanced */
.service-tile-wow {
  position: relative;
  overflow: hidden;
}
.service-tile-wow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,80,83,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-tile-wow:hover::before {
  opacity: 1;
}
.service-tile-wow:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(240, 80, 83, 0.12);
  border-color: rgba(240, 80, 83, 0.4);
}
.service-tile-wow:hover .service-tile-icon {
  transform: scale(1.1) rotate(-3deg);
}
.service-tile-wow .service-tile-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-tile-wow .service-tile-link {
  transition: letter-spacing 0.25s ease;
}
.service-tile-wow:hover .service-tile-link {
  letter-spacing: 0.04em;
}

/* Steps hover + connected flow lines */
.page-landing .marketplace-step:not(:last-child)::after {
  display: none;
}

.steps-connected .marketplace-step {
  transition: transform 0.3s ease;
}
.steps-connected .marketplace-step:hover {
  transform: translateY(-6px);
}
.steps-connected .step-no {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 3;
  --flow-delay: 0s;
}
.steps-connected .marketplace-step:hover .step-no {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(240, 80, 83, 0.28);
  border-color: var(--c-coral, #f05053);
}

/* Animated connector between steps */
.step-flow-line {
  position: absolute;
  top: 22px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 4px;
  background: linear-gradient(90deg, #e8ecf1, #dfe4ea);
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
}
.step-flow-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    rgba(240, 80, 83, 0.15) 8px,
    rgba(240, 80, 83, 0.15) 14px
  );
  animation: stepDashDrift 1.8s linear infinite;
}
.step-flow-pulse {
  position: absolute;
  top: -3px;
  left: -20%;
  width: 28%;
  height: 10px;
  background: linear-gradient(90deg, transparent, #f05053 40%, #ff9a8b 60%, transparent);
  border-radius: 6px;
  filter: blur(0.5px);
  animation: stepFlowPulse 2.4s ease-in-out infinite;
  animation-delay: var(--flow-delay, 0s);
}
.step-flow-line::after {
  content: '›';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-58%);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-coral, #f05053);
  opacity: 0.55;
  animation: stepArrowBlink 2.4s ease-in-out infinite;
  animation-delay: var(--flow-delay, 0s);
}

@keyframes stepFlowPulse {
  0% { left: -25%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes stepDashDrift {
  from { background-position: 0 0; }
  to { background-position: 28px 0; }
}
@keyframes stepArrowBlink {
  0%, 100% { opacity: 0.35; transform: translateY(-58%) translateX(0); }
  50% { opacity: 1; transform: translateY(-58%) translateX(3px); }
}

/* Active step glow when line pulse passes (subtle ring) */
.steps-connected .step-no::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: stepRingPulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--flow-delay, 0s) + 1.8s);
}
.marketplace-step:last-child .step-no::after {
  animation-delay: 3.2s;
}
@keyframes stepRingPulse {
  0%, 70%, 100% { border-color: transparent; opacity: 0; transform: scale(0.9); }
  80% { border-color: rgba(240, 80, 83, 0.35); opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .step-flow-line {
    top: auto;
    bottom: -1.25rem;
    left: 50%;
    width: 4px;
    height: 2.5rem;
    transform: translateX(-50%);
  }
  .step-flow-line::before {
    background: repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 6px,
      rgba(240, 80, 83, 0.15) 6px,
      rgba(240, 80, 83, 0.15) 12px
    );
    animation: stepDashDriftV 1.8s linear infinite;
  }
  .step-flow-pulse {
    top: -20%;
    left: -3px;
    width: 10px;
    height: 30%;
    background: linear-gradient(180deg, transparent, #f05053 40%, #ff9a8b 60%, transparent);
    animation: stepFlowPulseV 2.4s ease-in-out infinite;
    animation-delay: var(--flow-delay, 0s);
  }
  .step-flow-line::after {
    right: auto;
    left: 50%;
    bottom: -4px;
    top: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}
@keyframes stepFlowPulseV {
  0% { top: -25%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes stepDashDriftV {
  from { background-position: 0 0; }
  to { background-position: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .step-flow-pulse,
  .step-flow-line::before,
  .step-flow-line::after,
  .steps-connected .step-no::after {
    animation: none !important;
  }
}

/* Steps hover */
.steps-animate .marketplace-step {
  transition: transform 0.3s ease;
}
.steps-animate .marketplace-step:hover {
  transform: translateY(-6px);
}
.steps-animate .step-no {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.steps-animate .marketplace-step:hover .step-no {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(240, 80, 83, 0.25);
}

/* Trust cards */
.trust-strip-home article {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.trust-strip-home article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* Nav underline on hover */
.topbar-landing .nav a {
  position: relative;
}
.topbar-landing .nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--c-coral);
  transition: width 0.3s ease;
}
.topbar-landing .nav a:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .hero-cta-card {
    animation: none;
  }
  .wow-title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }
}

/* ── Neden PORTALDA? — platform story section ── */
.platform-story-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 50%, #fff 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.platform-story-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(232, 76, 61, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 80%, rgba(232, 76, 61, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.platform-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.platform-story-copy h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
  color: var(--c-ink, #1a1a2e);
}

.platform-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.platform-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.platform-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #444;
}

.platform-highlights li i {
  width: 18px;
  height: 18px;
  color: var(--c-coral, #e84c3d);
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Animated dashboard mock */
.platform-visual {
  position: relative;
  min-height: 380px;
}

.platform-mock {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.mock-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(232, 76, 61, 0.15);
  animation: orbitSpin 24s linear infinite;
}
.mock-orbit-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mock-orbit-2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-direction: reverse;
  animation-duration: 18s;
}

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

.mock-screen {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  animation: mockFloat 5s ease-in-out infinite;
}

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

.mock-screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f5f5f7;
  border-bottom: 1px solid #eee;
}
.mock-screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}
.mock-screen-bar span:first-child { background: #ff5f57; }
.mock-screen-bar span:nth-child(2) { background: #febc2e; }
.mock-screen-bar span:nth-child(3) { background: #28c840; }
.mock-screen-bar em {
  margin-left: auto;
  font-size: 0.7rem;
  font-style: normal;
  color: #999;
}

.mock-screen-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
}
.mock-row i {
  width: 18px;
  height: 18px;
  color: var(--c-coral, #e84c3d);
}
.mock-row small {
  display: block;
  font-size: 0.7rem;
  color: #999;
}
.mock-row strong {
  font-size: 0.85rem;
  color: #333;
}
.mock-row-highlight {
  background: linear-gradient(135deg, rgba(232, 76, 61, 0.08), rgba(232, 76, 61, 0.02));
  border-color: rgba(232, 76, 61, 0.15);
}
.mock-live {
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.mock-progress {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.mock-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-coral, #e84c3d), #ff7b6e);
  border-radius: 3px;
  animation: progressFill 3s ease-in-out infinite;
}
@keyframes progressFill {
  0% { width: 0; }
  60% { width: 78%; }
  100% { width: 78%; }
}

.mock-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.mock-float-card i {
  width: 16px;
  height: 16px;
  color: var(--c-coral, #e84c3d);
}
.mock-float-1 {
  top: -8%;
  right: -5%;
  animation: floatCard1 4s ease-in-out infinite;
}
.mock-float-2 {
  bottom: 20%;
  left: -12%;
  animation: floatCard2 5s ease-in-out infinite 0.5s;
}
.mock-float-3 {
  bottom: -5%;
  right: 5%;
  animation: floatCard3 4.5s ease-in-out infinite 1s;
  background: linear-gradient(135deg, #fff, #f0fff4);
  border: 1px solid rgba(40, 200, 64, 0.2);
}
.mock-float-3 i { color: #28c840; }

@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 8px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -6px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4px, -8px) scale(1.02); }
}

/* Stats counter row */
.platform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.platform-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--c-coral, #e84c3d);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.35rem;
}

/* Benefit cards */
.platform-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.benefit-card {
  position: relative;
  padding: 1.75rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.benefit-card-featured {
  border-color: rgba(232, 76, 61, 0.25);
  background: linear-gradient(180deg, #fff 0%, rgba(232, 76, 61, 0.03) 100%);
  box-shadow: 0 8px 32px rgba(232, 76, 61, 0.08);
}
.benefit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--c-coral, #e84c3d);
  border-radius: 20px;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 76, 61, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.benefit-icon i {
  width: 24px;
  height: 24px;
  color: var(--c-coral, #e84c3d);
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: #222;
}
.benefit-card > p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 1rem;
}
.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.benefit-card ul li {
  font-size: 0.85rem;
  color: #555;
  padding-left: 1.1rem;
  position: relative;
}
.benefit-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-coral, #e84c3d);
  font-weight: 700;
  font-size: 0.75rem;
}

/* CTA banner */
.platform-cta-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.platform-cta-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 76, 61, 0.25) 0%, transparent 70%);
  animation: ctaGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.platform-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.platform-cta-inner h3 {
  color: #fff;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin: 0 0 0.5rem;
  max-width: 520px;
}
.platform-cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.95rem;
}
.platform-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .platform-story-grid {
    grid-template-columns: 1fr;
  }
  .platform-visual {
    order: -1;
    min-height: 320px;
  }
  .platform-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-benefits-grid {
    grid-template-columns: 1fr;
  }
  .platform-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .platform-cta-actions {
    justify-content: center;
    width: 100%;
  }
  .mock-float-2 { left: 0; }
}

@media (max-width: 480px) {
  .platform-stats {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem;
    gap: 1rem;
  }
  .mock-float-card {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-orbit,
  .mock-screen,
  .mock-float-card,
  .mock-progress-fill,
  .platform-cta-glow {
    animation: none !important;
  }
  .mock-progress-fill { width: 78%; }
}
