/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Corporate US studio, thin typography
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

body[data-page="home"] {
  --header-h: 88px;
  --purple: #6D28D9;
  --purple-light: #7C3AED;
  --purple-pale: #F5F3FF;
  --cyan: #0891B2;
  --text-sharp: #0F172A;
  --muted-sharp: #475569;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background: #FFFFFF;
  color: var(--text-sharp);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

body[data-page="home"] .nav a {
  color: var(--muted-sharp);
  font-weight: 600;
}
body[data-page="home"] .nav a:hover {
  color: var(--text-sharp);
}
body[data-page="home"] .nav a.active {
  color: var(--purple);
}

body[data-page="home"] .logo--ventra .logo__name {
  color: var(--text-sharp);
}

body[data-page="home"] .btn--primary {
  background: #6D28D9;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.2);
  font-weight: 600;
}

body[data-page="home"] .btn--primary:hover {
  background: #5B21B6;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}

body[data-page="home"] .btn--glass {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  font-weight: 500;
  color: var(--text-sharp);
}

body[data-page="home"] .btn--glass:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}

body[data-page="home"] .header,
body[data-page="home"] .header.scrolled {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 #E2E8F0;
  z-index: 1000;
  isolation: isolate;
}

@media (max-width: 960px) {
  .corp-services--five {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .corp-services--five .corp-svc:nth-child(n) {
    grid-column: auto;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .corp-services--five {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .corp-services--five .corp-svc:nth-child(n) {
    grid-column: auto;
  }

  .corp-services--five .corp-svc:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
    width: 100%;
  }
}

body[data-page="home"][data-theme="light"] .cursor-glow { display: none !important; }

body[data-page="home"] .section-tag {
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  color: #6D28D9;
  font-weight: 600;
}

body[data-page="home"] .corp-svc__icon {
  background: #F5F3FF;
  color: #6D28D9;
}

body[data-page="home"] .corp-svc__price { color: #6D28D9; }

body[data-page="home"] .corp-svc:hover {
  border-color: #DDD6FE;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

body[data-page="home"] .corp-plan--hit {
  border-color: #7C3AED;
  box-shadow: 0 0 0 1px #7C3AED, 0 8px 32px rgba(124, 58, 237, 0.1);
}

body[data-page="home"] .corp-plan__badge { background: #7C3AED; }

body[data-page="home"] .corp-pricing:not(.corp-pricing--compare) .corp-plan li::before,
body[data-page="home"] .corp-guarantee__item svg,
body[data-page="home"] .corp-license svg { color: #7C3AED; }

body[data-page="home"] .corp-license { border-left-color: #7C3AED; }

body[data-page="home"] .corp-trustbar__item svg { color: #7C3AED; }

body[data-page="home"] .corp-cta .btn--primary {
  background: #6D28D9;
}

/* ── Hero ── */
.corp-hero {
  position: relative;
  padding: 48px 0 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  overflow: visible;
}

.corp-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 38%, rgba(109, 40, 217, 0.1), transparent 58%),
    radial-gradient(ellipse 65% 50% at 82% 18%, rgba(124, 58, 237, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 82%, rgba(8, 145, 178, 0.06), transparent 50%);
  animation: corpMeshDrift 14s ease-in-out infinite alternate;
}

.corp-hero__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 20%, transparent 72%);
  animation: corpGridPulse 10s ease-in-out infinite alternate;
}

@keyframes corpMeshDrift {
  0% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04) translate(-1%, 0.5%); }
}

@keyframes corpGridPulse {
  0% { opacity: 0.45; }
  100% { opacity: 0.75; }
}

@keyframes corpAccentShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.corp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 36px;
  min-height: auto;
}

.corp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #16A34A;
  margin-bottom: 28px;
}

.corp-badge__dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: corp-pulse 2s infinite;
}

@keyframes corp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.corp-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-sharp);
  margin-bottom: 24px;
}

.corp-hero__accent {
  display: inline;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #6D28D9;
  background: none;
  -webkit-text-fill-color: currentColor;
  padding: 0 4px;
}

.corp-hero__tail {
  display: block;
  font-size: 0.72em;
  font-weight: 600;
  color: var(--muted-sharp);
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.corp-hero__dash { color: #94A3B8; font-weight: 400; }

.corp-hero__desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-sharp);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 16px;
}

.corp-hero__price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-sharp);
  margin-bottom: 28px;
}

.corp-hero__price strong {
  color: #6D28D9;
  font-weight: 700;
  font-size: 1.05rem;
}

.corp-trust,
.corp-badge,
.corp-stats-bar,
.corp-stat,
.corp-trustbar,
.corp-trustbar__item,
.corp-float {
  cursor: default;
  user-select: none;
}

.corp-macbook__display[role="button"] {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.corp-macbook__display[role="button"]:hover {
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.35);
}

.corp-macbook__display[role="button"]:focus-visible {
  outline: 2px solid #7C3AED;
  outline-offset: 3px;
}

.corp-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.corp-avatars {
  display: flex;
}

.corp-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  border: 2px solid #FEFEFE;
  margin-left: calc(var(--i) * -10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.corp-avatars span:first-child { margin-left: 0; }

.corp-trust p {
  font-size: 0.88rem;
  color: var(--muted-sharp);
  line-height: 1.4;
  font-weight: 500;
}

.corp-trust strong { color: var(--text-sharp); }

.corp-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  padding: 26px 0 0;
  list-style: none;
}

.corp-hero__features li {
  min-height: 0;
}

.corp-hero__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0 12px 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%);
  border: 1px solid #E4E9F2;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 20px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: visible;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.corp-hero__feat::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 40, 217, 0.06), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.corp-hero__features li:nth-child(2) .corp-hero__feat::after {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(8, 145, 178, 0.07), transparent 70%);
}

.corp-hero__features li:nth-child(3) .corp-hero__feat::after {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(22, 163, 74, 0.07), transparent 70%);
}

.corp-hero__feat:hover {
  transform: translateY(-4px);
  border-color: #D4C4FC;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(109, 40, 217, 0.12);
}

.corp-hero__features li:nth-child(2) .corp-hero__feat:hover {
  border-color: #A5F3FC;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(8, 145, 178, 0.12);
}

.corp-hero__features li:nth-child(3) .corp-hero__feat:hover {
  border-color: #BBF7D0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(22, 163, 74, 0.12);
}

.corp-hero__feat:hover::after {
  opacity: 1;
}

.corp-hero__feat:focus-visible {
  outline: 2px solid #7C3AED;
  outline-offset: 3px;
}

.corp-hero__feat-icon {
  --cube-color: #6D28D9;
  --cube-bg-top: #FAF5FF;
  --cube-bg-bot: #DDD6FE;
  --cube-shadow: rgba(109, 40, 217, 0.28);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin: -26px auto 12px;
  background: linear-gradient(155deg, var(--cube-bg-top) 0%, var(--cube-bg-bot) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -2px 0 rgba(0, 0, 0, 0.04) inset,
    0 10px 22px var(--cube-shadow),
    0 3px 6px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cube-color);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-hero__feat-icon::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  right: 5px;
  height: 42%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.corp-hero__feat:hover .corp-hero__feat-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -2px 0 rgba(0, 0, 0, 0.04) inset,
    0 16px 28px var(--cube-shadow),
    0 4px 8px rgba(15, 23, 42, 0.1);
}

.corp-hero__features li:nth-child(2) .corp-hero__feat-icon {
  --cube-color: #0891B2;
  --cube-bg-top: #F0FDFF;
  --cube-bg-bot: #A5F3FC;
  --cube-shadow: rgba(8, 145, 178, 0.26);
}

.corp-hero__features li:nth-child(3) .corp-hero__feat-icon {
  --cube-color: #16A34A;
  --cube-bg-top: #F0FDF4;
  --cube-bg-bot: #BBF7D0;
  --cube-shadow: rgba(22, 163, 74, 0.26);
}

.corp-hero__feat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.corp-hero__feat > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  width: 100%;
  padding: 4px 4px 0;
}

.corp-hero__features strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-sharp);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.corp-hero__features span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-sharp);
  line-height: 1.4;
}

/* Stats bar */
.corp-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid #E2E8F0;
  background: #FFFFFF;
}

.corp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 0;
}

.corp-stat {
  flex: 1;
  text-align: center;
}

.corp-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #6D28D9;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.corp-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-sharp);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.corp-stat__sep {
  width: 1px;
  height: 36px;
  background: #E2E8F0;
  flex-shrink: 0;
}

.corp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero visual */
.corp-hero__visual {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  padding: 8px 0 16px;
}

.corp-macbook-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 1;
}

.corp-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transform: none;
}

.corp-panel:hover {
  transform: none;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.corp-panel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.corp-panel__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}

.corp-panel__bar span:first-child { background: #EF4444; }
.corp-panel__bar span:nth-child(2) { background: #F59E0B; }
.corp-panel__bar span:nth-child(3) { background: #22C55E; }

.corp-panel__body {
  padding: 24px;
}

.corp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.corp-metric {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

.corp-metric strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #6D28D9;
}

.corp-metric span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted-sharp);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.corp-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}

.corp-chart__bar {
  flex: 1;
  background: #7C3AED;
  border-radius: 4px 4px 0 0;
}

.corp-float {
  position: absolute;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
  animation: corpFloatBob 5s ease-in-out infinite;
}

.corp-float--1 { bottom: 18px; left: -28px; animation-delay: 0s; }
.corp-float--2 { top: 14%; right: -36px; animation-delay: 2.5s; }

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

.corp-float__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F5F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6D28D9;
}

.corp-float strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-sharp); }
.corp-float span { display: block; font-size: 0.75rem; font-weight: 500; color: var(--muted-sharp); }

/* Trust bar */
.corp-trustbar {
  background: #F8FAFC;
  color: #475569;
  padding: 14px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.corp-trustbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.corp-trustbar__inner::-webkit-scrollbar {
  display: none;
}

.corp-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #475569;
}

.corp-trustbar__item svg {
  width: 16px;
  height: 16px;
  color: #2563EB;
}

/* Sections */
.corp-section {
  padding: 48px 0;
}

.corp-section--services {
  padding: 52px 0;
  background: linear-gradient(165deg, #FAF5FF 0%, #FFFFFF 45%, #F0F9FF 100%);
  border-block: 1px solid #EDE9FE;
  position: relative;
}

.corp-section--services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(109, 40, 217, 0.06), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(8, 145, 178, 0.05), transparent 40%);
  pointer-events: none;
}

.corp-section--services .container { position: relative; z-index: 1; }

.corp-section--services .corp-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.corp-section--gray { background: #F8FAFC; }

.corp-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.corp-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--text-sharp);
}

.corp-head p { color: var(--muted-sharp); font-weight: 500; }

/* Services preview */
.corp-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.corp-services--five {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.corp-services--five .corp-svc:nth-child(-n+3) {
  grid-column: span 2;
}

.corp-services--five .corp-svc:nth-child(4) {
  grid-column: 2 / span 2;
}

.corp-services--five .corp-svc:nth-child(5) {
  grid-column: 4 / span 2;
}

.corp-svc--card {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.corp-svc--card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: #A78BFA;
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.14);
}

.corp-svc__accent {
  height: 5px;
  background: linear-gradient(90deg, #6D28D9, #A78BFA);
}

.corp-svc--card:nth-child(2) .corp-svc__accent {
  background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.corp-svc--card:nth-child(3) .corp-svc__accent {
  background: linear-gradient(90deg, #0891B2, #22D3EE);
}

.corp-svc--card:nth-child(4) .corp-svc__accent {
  background: linear-gradient(90deg, #0F766E, #2DD4BF);
}

.corp-svc--card:nth-child(5) .corp-svc__accent,
.corp-svc--elite .corp-svc__accent {
  background: linear-gradient(90deg, #7C3AED, #F59E0B);
}

.corp-svc__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #CBD5E1;
}

.corp-svc__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 0;
}

.corp-svc--card .corp-svc__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 0;
  box-shadow: inset 0 0 0 1px rgba(109, 40, 217, 0.08);
}

.corp-svc--card h3 {
  padding: 16px 22px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.corp-svc--card p {
  padding: 8px 22px 0;
  flex: 1;
  margin-bottom: 0;
}

.corp-svc--card .corp-svc__price {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.corp-svc--card .corp-svc__price span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94A3B8;
  margin-right: 4px;
}

.corp-svc__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 22px 22px;
  padding: 10px 16px;
  width: fit-content;
  border-radius: 999px;
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6D28D9;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.corp-svc__link:hover {
  background: #6D28D9;
  border-color: #6D28D9;
  color: #fff;
}

.corp-svc--elite {
  border-color: #C4B5FD;
  background: linear-gradient(180deg, #FDF4FF 0%, #FFFFFF 100%);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.12);
}

.corp-svc {
  padding: 28px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.corp-svc:hover {
  border-color: #DDD6FE;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.corp-svc__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  margin-bottom: 16px;
}

.corp-svc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-sharp);
}

.corp-svc p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-sharp);
  line-height: 1.65;
  margin-bottom: 16px;
}

.corp-svc__price {
  font-size: 1rem;
  font-weight: 600;
  color: #2563EB;
}

/* Pricing */
.corp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.corp-pricing--wide {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .corp-pricing--wide { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .corp-pricing--wide { grid-template-columns: 1fr; }
}

.corp-plan {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  text-align: center;
}

.corp-plan--hit {
  border-color: #2563EB;
  box-shadow: 0 0 0 1px #2563EB, 0 8px 24px rgba(37, 99, 235, 0.1);
}

.corp-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563EB;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.corp-plan h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-bottom: 12px;
}

.corp-plan__price {
  font-size: 2.2rem;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 8px;
}

.corp-plan__price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #64748B;
}

.corp-plan > p {
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748B;
  margin-bottom: 24px;
}

.corp-plan ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.corp-plan li {
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748B;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
  padding-left: 24px;
  position: relative;
}

.corp-plan__features .corp-plan__feat {
  padding-left: 0;
}

.corp-plan__features .corp-plan__feat::before,
.corp-pricing--compare .corp-plan__features li::before {
  content: none !important;
  display: none !important;
}

.corp-pricing--compare .corp-plan__features li {
  padding-left: 0;
}

.corp-plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: 600;
}

/* Guarantee */
.corp-guarantee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.corp-guarantee__item svg {
  width: 28px;
  height: 28px;
  color: #2563EB;
  margin-bottom: 12px;
}

.corp-guarantee__item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1E293B;
}

.corp-guarantee__item p {
  font-size: 0.8rem;
  font-weight: 400;
  color: #64748B;
  line-height: 1.6;
}

.corp-license {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  border-left: 4px solid #2563EB;
}

.corp-license svg { width: 28px; color: #2563EB; flex-shrink: 0; }
.corp-license strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; color: #1E293B; }
.corp-license span { display: block; font-size: 0.78rem; font-weight: 400; color: #64748B; }

/* Freelance section */
.corp-freelance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.corp-fl-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.corp-fl-card:hover {
  border-color: #C4B5FD;
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.08);
  transform: translateY(-2px);
}

.corp-fl-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F5F3FF;
  color: #6D28D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-fl-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.3;
}

.corp-fl-card p {
  flex: 1;
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.corp-fl-card__price {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6D28D9;
  letter-spacing: 0.02em;
}

.corp-fl-card__price span {
  font-weight: 500;
  color: #94A3B8;
  margin-right: 4px;
}

.corp-freelance__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  text-align: center;
}

.corp-freelance__foot p {
  max-width: 480px;
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .corp-freelance { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .corp-freelance { grid-template-columns: 1fr; }
}

/* CTA */
.corp-cta {
  padding: 80px 0 100px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  text-align: center;
  color: #1E293B;
}

.corp-cta h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
  color: #1E293B;
}

.corp-cta p {
  color: #64748B;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.corp-cta .btn--primary {
  background: #2563EB;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.corp-cta .btn--primary:hover {
  background: #1D4ED8;
}

body[data-page="home"] .whatsapp-btn { bottom: 52px; }

/* Process */
.corp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.corp-process__step {
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
}

.corp-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F5F3FF;
  color: #6D28D9;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.corp-process__step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-sharp);
  margin-bottom: 8px;
}

.corp-process__step p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-sharp);
  line-height: 1.6;
}

/* Reviews */
.corp-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.corp-review {
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
}

.corp-review--hit {
  border-color: #6D28D9;
  box-shadow: 0 0 0 1px #6D28D9;
}

.corp-review__stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.corp-review p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sharp);
  line-height: 1.65;
  margin-bottom: 20px;
}

.corp-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.corp-review__avatar {
  position: relative;
  flex-shrink: 0;
  line-height: 0;
}

.corp-review__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sharp);
}

.corp-review__author span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-sharp);
}

.corp-reviews__more {
  text-align: center;
  margin-top: 28px;
}

.corp-reviews__more a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #6D28D9;
}

.corp-reviews__more a:hover { color: #5B21B6; }

/* FAQ */
.corp-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.corp-faq__item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.corp-faq__item summary {
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-sharp);
  cursor: pointer;
  list-style: none;
}

.corp-faq__item summary::-webkit-details-marker { display: none; }

.corp-faq__item[open] {
  border-color: #DDD6FE;
}

.corp-faq__item p {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-sharp);
  line-height: 1.65;
}

/* Homepage scroll reveal — opacity only (transform breaks fixed header stacking) */
body[data-page="home"] .reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-page="home"] .reveal.visible {
  opacity: 1;
  transform: none;
}

body[data-page="home"] .corp-section[data-section-block] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body[data-page="home"] .corp-plan.reveal.visible {
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease;
}

body[data-page="home"] .reveal--delay.visible { transition-delay: 0.12s; }

body[data-page="home"].no-animations .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Laptop mockup */
.corp-laptop {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.corp-laptop__screen {
  background: #1E293B;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.corp-laptop__screen .corp-panel {
  border-radius: 6px 6px 0 0;
  transform: none;
}

.corp-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #CBD5E1, #94A3B8);
  border-radius: 0 0 12px 12px;
  margin: 0 8%;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.corp-laptop__base::after {
  content: '';
  display: block;
  width: 18%;
  height: 4px;
  margin: 4px auto 0;
  background: #64748B;
  border-radius: 4px;
}

/* Client trust strip */
.corp-trust-brands {
  padding: 36px 0 40px;
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F3FF 100%);
  border-bottom: 1px solid #EDE9FE;
}

.corp-trust-brands__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 28px;
}

.corp-trust-brands__stat {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  color: #6D28D9;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.corp-trust-brands__stat sup {
  font-size: 0.45em;
  font-weight: 800;
  margin-top: 0.15em;
  color: #A855F7;
}

.corp-trust-brands__label {
  max-width: 420px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #64748B;
  line-height: 1.5;
}

.corp-trust-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #E2E8F0;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.06);
}

.corp-brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 18px 12px;
  background: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
}

.corp-brand-mark__accent {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-accent, #6D28D9);
  opacity: 0.85;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.corp-brand-mark__name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #334155;
  text-align: center;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.corp-brand-mark:hover {
  background: #FAF5FF;
  transform: translateY(-1px);
}

.corp-brand-mark:hover .corp-brand-mark__accent {
  width: 32px;
  opacity: 1;
}

.corp-brand-mark:hover .corp-brand-mark__name {
  color: #6D28D9;
}

@media (max-width: 960px) {
  .corp-trust-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .corp-trust-brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .corp-brand-mark { min-height: 64px; padding: 14px 10px; }
  .corp-brand-mark__name { font-size: 0.65rem; letter-spacing: 0.1em; }
}

/* Process timeline */
.corp-process--timeline {
  position: relative;
}

.corp-process--timeline::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #DDD6FE, #6D28D9, #DDD6FE);
  z-index: 0;
}

.corp-process--timeline .corp-process__step {
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.corp-process--timeline .corp-process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.08);
}

/* Home portfolio */
.corp-portfolio-home {
  margin-bottom: 8px;
}

.corp-portfolio-home__more {
  text-align: center;
  margin-top: 28px;
}

.corp-portfolio-home__more a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #6D28D9;
}

.corp-portfolio-home__more a:hover { color: #5B21B6; }

/* Reviews polish */
.corp-review {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.corp-review::before {
  content: '“';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  line-height: 1;
  color: #EDE9FE;
  font-family: Georgia, serif;
}

.corp-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

/* FAQ accordion polish */
.corp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s, background 0.2s;
}

.corp-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F5F3FF;
  color: #6D28D9;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.25s, background 0.25s;
}

.corp-faq__item[open] summary::after {
  content: '−';
  background: #6D28D9;
  color: #fff;
}

.corp-faq__item[open] summary {
  color: #6D28D9;
  background: #FAFAFF;
}

@media (max-width: 960px) {
  .corp-hero__grid { grid-template-columns: 1fr; }
  .corp-hero__visual { max-width: 480px; margin: 0 auto; padding: 8px 0 12px; }
  .corp-macbook-wrap { max-width: 420px; }
  .corp-float--1 { bottom: 12px; left: -12px; }
  .corp-float--2 { top: 10%; right: -20px; }
  .corp-panel { transform: none; }
  .corp-services:not(.corp-services--five), .corp-pricing, .corp-freelance { grid-template-columns: 1fr; }
  .corp-guarantee { grid-template-columns: repeat(2, 1fr); }
  .corp-trustbar__inner { gap: 16px; }
  .corp-stats { flex-wrap: wrap; gap: 20px; }
  .corp-stat { flex: 0 0 45%; }
  .corp-stat__sep { display: none; }
  .corp-hero__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 24px;
  }
  .corp-hero__features li {
    padding: 0;
  }
  .corp-hero__feat {
    padding: 0 10px 14px;
  }
  .corp-hero__feat-icon {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border-radius: 12px;
  }
  .corp-hero__features strong {
    font-size: 0.78rem;
  }
  .corp-hero__features span {
    font-size: 0.68rem;
  }
  .corp-hero__grid { min-height: auto; padding: 48px 0 40px; }
  .corp-process { grid-template-columns: repeat(2, 1fr); }
  .corp-reviews { grid-template-columns: 1fr; }
  .corp-process--timeline::before { display: none; }
}

@media (max-width: 640px) {
  .corp-guarantee { grid-template-columns: 1fr; }
  .corp-float { display: none; }
  .corp-process { grid-template-columns: 1fr; }
  .corp-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 28px;
    max-width: 360px;
  }
  .corp-hero__features li {
    padding: 0;
  }
  .corp-hero__feat {
    padding: 0 16px 18px;
  }
  .corp-hero__feat-icon {
    width: 48px;
    height: 48px;
    margin-top: -24px;
  }
  .corp-hero__features strong {
    font-size: 0.88rem;
  }
  .corp-hero__features span {
    font-size: 0.76rem;
  }
}

/* ── Premium polish v27 ── */
body[data-page="home"] {
  --header-h: 88px;
}

.corp-section { padding: 42px 0; }
.corp-section--services { padding: 46px 0; }
.corp-cta { padding: 68px 0 82px; }

.corp-laptop-glow {
  position: absolute;
  inset: 8% 0 18%;
  background: radial-gradient(ellipse at 50% 50%, rgba(109, 40, 217, 0.28), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.65; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.04); }
}

.corp-macbook {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  animation: macbookFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 48px rgba(15, 23, 42, 0.18));
}

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

.corp-macbook__lid {
  background: linear-gradient(180deg, #E2E8F0, #94A3B8);
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255,255,255,0.5);
}

.corp-macbook__bezel {
  background: #0F172A;
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 0;
  position: relative;
}

.corp-macbook__camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #334155;
  margin: 0 auto 6px;
  box-shadow: inset 0 0 0 1px #475569;
}

.corp-macbook__display {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(135deg, #1E1B4B, #312E81);
}

.corp-macbook__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.corp-macbook__shot.is-loaded { opacity: 1; }

.corp-macbook__hud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.88));
}

.corp-macbook__base {
  height: 12px;
  margin: 0 6%;
  background: linear-gradient(180deg, #CBD5E1, #64748B);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.corp-macbook__indent {
  width: 16%;
  height: 4px;
  margin: 4px auto 0;
  background: #475569;
  border-radius: 4px;
}

.corp-chart--live .corp-chart__bar {
  height: 0;
  animation-fill-mode: forwards;
}

@keyframes corpBarGrow {
  from { height: 0; }
  to { height: var(--h, 50%); }
}

.corp-review__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #EDE9FE;
}

.corp-review__company {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: #7C3AED;
  margin-top: 2px;
}

.corp-review__case {
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6D28D9;
  text-decoration: none;
}

.corp-review__case:hover { color: #5B21B6; }

.corp-review--hit {
  background: linear-gradient(165deg, #FAF5FF, #fff);
  border-color: #DDD6FE;
}

.corp-plan {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
}

.corp-plan .btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-plan .btn--primary {
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
}

.corp-plan .btn:hover {
  transform: translateY(-2px);
}

body[data-page="home"] .btn--primary {
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body[data-page="home"] .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.38);
}

@media (max-width: 960px) {
  .corp-macbook { transform: none; }
}

/* Payment methods — homepage */
body[data-page="home"] .corp-payments {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

body[data-page="home"] .corp-pay--hero {
  padding: 24px 26px;
  background: linear-gradient(165deg, #FAF5FF 0%, #fff 55%);
  border: 1px solid #DDD6FE;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(109, 40, 217, 0.08);
}

body[data-page="home"] .corp-pay__main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

body[data-page="home"] .corp-pay__icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

body[data-page="home"] .corp-pay__icon svg {
  width: 52px;
  height: auto;
  aspect-ratio: 64 / 40;
  display: block;
  border-radius: 10px;
}

body[data-page="home"] .corp-pay__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #EDE9FE;
  color: #6D28D9;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .corp-pay__copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}

body[data-page="home"] .corp-pay__copy p {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

body[data-page="home"] .corp-pay__brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

body[data-page="home"] .corp-pay__brands span {
  display: block;
  line-height: 0;
}

body[data-page="home"] .corp-pay__brands svg,
body[data-page="home"] .corp-pay__brands [data-card-brand] svg {
  width: 100%;
  height: auto;
  aspect-ratio: 64 / 40;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
}

body[data-page="home"] .corp-pay__icon svg {
  width: 52px;
  height: auto;
  aspect-ratio: 64 / 40;
  display: block;
  border-radius: 10px;
}

body[data-page="home"] .corp-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

body[data-page="home"] .corp-pay--mini {
  padding: 18px 12px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body[data-page="home"] .corp-pay--mini:hover {
  border-color: #C4B5FD;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.08);
  transform: translateY(-2px);
}

body[data-page="home"] .corp-pay--mini .corp-pay__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

body[data-page="home"] .corp-pay--mini .corp-pay__icon svg {
  width: 48px;
  height: auto;
  aspect-ratio: 64 / 40;
}

body[data-page="home"] .corp-pay--mini h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 4px;
}

body[data-page="home"] .corp-pay--mini p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94A3B8;
  margin: 0;
}

@media (max-width: 720px) {
  body[data-page="home"] .corp-pay__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body[data-page="home"] .corp-pay__brands {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] .corp-pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Premium polish v32 ── */
body[data-page="home"] .corp-svc--card.reveal.visible {
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

body[data-page="home"] .corp-svc--card.reveal.visible:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: #A78BFA;
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.14);
  z-index: 2;
}

body[data-page="home"] .portfolio-grid .portfolio-item__img {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 200px;
}

body[data-page="home"] .portfolio-grid .portfolio-item__img:not(.has-live):not(.has-shot) {
  background: #EEF2F7;
}

.corp-review__co {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--co-color, #6D28D9);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.sticky-quote {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #6D28D9;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(109, 40, 217, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s, box-shadow 0.25s ease;
}

.sticky-quote.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(109, 40, 217, 0.42);
}

@media (max-width: 720px) {
  .sticky-quote {
    right: 16px;
    bottom: 92px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

body.no-animations .corp-float,
body.no-animations .corp-macbook,
body.no-animations .corp-hero__mesh,
body.no-animations .corp-hero__grid-bg {
  animation: none !important;
}

/* ── Pricing comparison cards ── */
.corp-pricing--compare {
  align-items: stretch;
}

.corp-pricing--compare .corp-plan {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 28px 22px 24px;
}

.corp-pricing--compare .corp-plan h3,
.corp-pricing--compare .corp-plan__price,
.corp-pricing--compare .corp-plan__meta {
  text-align: center;
}

.corp-pricing--compare .corp-plan__meta {
  margin-bottom: 18px;
}

.corp-plan__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}

.corp-plan__feat,
.pricing-card__feat {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #F1F5F9;
  min-height: 34px;
}

.corp-plan__feat-icon svg,
.pricing-card__feat-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.corp-plan__feat.is-included .corp-plan__feat-icon,
.pricing-card__feat.is-included .pricing-card__feat-icon {
  color: #7C3AED;
}

.corp-plan__feat.is-excluded .corp-plan__feat-icon,
.pricing-card__feat.is-excluded .pricing-card__feat-icon {
  color: #EF4444;
  opacity: 0.85;
}

.corp-plan__feat-label,
.pricing-card__feat-label {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #475569;
}

.corp-plan__feat.is-excluded .corp-plan__feat-label,
.pricing-card__feat.is-excluded .pricing-card__feat-label {
  color: #94A3B8;
}

.corp-plan__tip,
.pricing-card__tip {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #94A3B8;
  font-size: 0.72rem;
  line-height: 1;
  cursor: help;
  flex-shrink: 0;
}

.corp-plan__tip:hover,
.corp-plan__tip.is-open,
.pricing-card__tip:hover,
.pricing-card__tip.is-open {
  color: #7C3AED;
}

.corp-plan__tip::after,
.pricing-card__tip::after {
  content: attr(data-tip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #1E293B;
  color: #F8FAFC;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  z-index: 5;
}

.corp-plan__tip:hover::after,
.corp-plan__tip.is-open::after,
.pricing-card__tip:hover::after,
.pricing-card__tip.is-open::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.corp-plan__tip-spacer,
.pricing-card__tip-spacer {
  width: 18px;
  height: 18px;
}

.corp-plan__full-list,
.corp-plan__details,
.pricing-card__full-list,
.pricing-card__details {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: center;
}

.corp-plan__full-list,
.pricing-card__full-list {
  margin-bottom: 12px;
  padding: 0;
  color: #64748B;
  font-size: 0.74rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.corp-plan__full-list:hover,
.pricing-card__full-list:hover {
  color: #7C3AED;
}

.corp-plan__details,
.pricing-card__details {
  margin-top: 10px;
  padding: 0;
  color: #7C3AED;
  font-size: 0.78rem;
  font-weight: 600;
}

.corp-plan__details:hover,
.pricing-card__details:hover {
  color: #6D28D9;
}

.corp-plan .btn,
.pricing-card .btn {
  margin-top: auto;
}

/* Hover: purple ring follows cursor, Business stays subtly highlighted when idle */
.corp-pricing--compare .corp-plan {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body[data-page="home"] .corp-pricing--compare .corp-plan--hit {
  border-color: #7C3AED;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.35), 0 8px 24px rgba(124, 58, 237, 0.08);
  background: linear-gradient(180deg, #FDFBFF 0%, #fff 100%);
}

body[data-page="home"] .corp-pricing--compare:hover .corp-plan--hit:not(:hover) {
  border-color: #E2E8F0;
  box-shadow: none;
  background: #fff;
}

body[data-page="home"] .corp-pricing--compare .corp-plan.reveal.visible:hover,
body[data-page="home"] .corp-pricing--compare .corp-plan--hit.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: #7C3AED;
  box-shadow: 0 0 0 1px #7C3AED, 0 20px 40px rgba(109, 40, 217, 0.16);
  z-index: 3;
}

/* Pricing modal */
.pricing-modal[hidden] {
  display: none !important;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.pricing-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  padding: 28px 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.pricing-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #F8FAFC;
  color: #64748B;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.pricing-modal__close:hover {
  background: #F1F5F9;
  color: #1E293B;
}

.pricing-modal__tag {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7C3AED;
}

.pricing-modal__dialog h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  color: #1E293B;
}

.pricing-modal__meta {
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: #64748B;
}

.pricing-modal__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.pricing-modal__list li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.86rem;
  color: #475569;
}

.pricing-modal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-weight: 700;
}

body.pricing-modal-open {
  overflow: hidden;
}

html.pricing-modal-open {
  overflow: hidden;
}
