/* Corporate animations and landing-specific adjustments */
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}

.bg-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-fx-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--accent);
    animation-delay: -5s;
    animation-duration: 25s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.hero-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hero-point .icon {
    flex-shrink: 0;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 8px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(39,39,42,0.6), rgba(24,24,27,0.8));
}

.hero-panel__tag, .price-label, .promo-label {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-label { background: var(--primary-glow); color: var(--primary); }
.promo-label { background: var(--success-bg); color: var(--success-text); }

.hero-panel h2 {
  font-size: 1.4rem;
  margin: 16px 0 24px;
  color: var(--text);
}

.data-box {
    margin-bottom: 16px;
    background: rgba(9, 9, 11, 0.6);
}

.data-box strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}

.data-box strong span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.data-box p {
    margin-top: 8px;
    font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-soft);
  transition: color 0.2s;
  padding-top: 16px;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-item, .faq-item {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover, .faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  background: var(--surface-1);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary {
    position: relative;
    padding-right: 32px;
}

@media (max-width: 920px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
