/* ── Inner Hero ── */
.inner-hero-wrap {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.inner-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blue-dark);
  padding: clamp(48px, 6vw, 80px) 0;
}

.inner-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.inner-hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.12) 0px,
    rgba(0,0,0,0.12) 1px,
    transparent 1px,
    transparent 6px
  ), var(--blue-dark);
  z-index: 0;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,20,60,0.62);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}

.inner-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.inner-hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.inner-hero h1 span { color: #4db8ff; }

.inner-hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}


/* ── Inner Stats Bar ── */
.inner-stats-bar {
  background: #111;
  padding: clamp(40px, 5vw, 64px) 0;
}

.inner-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.inner-stat-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 400px;
}

.inner-stat-number {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: #4db8ff;
  line-height: 1;
  margin-bottom: 12px;
}

.inner-stat-label {
  font-size: 15px;
  color: var(--t-body-dark);
  line-height: 1.5;
}


/* ── Inner Expect ── */
.inner-expect {
  background: var(--blue-dark);
  padding: clamp(60px, 7vw, 96px) 0;
}

.inner-expect-header {
  padding: 0 24px clamp(32px, 4vw, 48px);
  text-align: center;
}

.inner-expect-header h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--t-heading-ls);
  margin-top: 0;
}

.inner-expect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.inner-expect-card {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.inner-expect-card:last-child { border-right: none; }

.inner-expect-card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.inner-expect-card h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.inner-expect-card-divider {
  width: 48px;
  height: 2px;
  background: #4db8ff;
  margin-bottom: 16px;
}

.inner-expect-card p {
  font-size: 15px;
  color: var(--t-body-dark);
  line-height: 1.65;
}

.inner-expect-card p strong { color: #4db8ff; font-weight: 600; }


/* ── Inner Content Block ── */
.inner-content-block {
  background: #181818;
  padding: clamp(60px, 7vw, 96px) 0;
}

.inner-content-block.alt { background: #111; }

.inner-content-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.inner-content-inner.layout-right { direction: rtl; }
.inner-content-inner.layout-right > * { direction: ltr; }

.inner-content-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-content-illustration img,
.inner-content-illustration > div { width: 100%; max-width: 360px; }

.inner-content-illustration.lottie-large > div { max-width: 640px; }

.inner-content-illustration-placeholder {
  min-height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
}

.inner-content-illustration video {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  display: block;
}

.inner-content-text h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--t-heading-ls);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.15;
}

.inner-content-text p {
  font-size: 15px;
  color: var(--t-body-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.inner-content-text p:last-of-type { margin-bottom: 28px; }
.inner-content-text strong { color: var(--white); font-weight: 600; }

.page-template-page-inner .inner-content-text {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.page-template-page-inner .inner-content-text p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.page-template-page-inner .inner-content-text h2,
.page-template-page-inner .inner-content-text h3 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: var(--t-heading-ls);
  line-height: 1.15;
}


/* ── Inner Feature Grid ── */
.inner-feature-grid {
  background: #0a0a0a;
  padding: clamp(60px, 7vw, 96px) 0;
  text-align: center;
}

.inner-feature-grid-header {
  max-width: 700px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.inner-feature-grid-header h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--t-heading-ls);
  line-height: 1.1;
}

.inner-feature-grid-header h2 span { color: #4db8ff; }

.inner-feature-cards {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.inner-feature-card {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.inner-feature-card-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  display: block;
}

.inner-feature-card h3 {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.inner-feature-card p {
  font-size: 14px;
  color: var(--t-body-dark);
  line-height: 1.65;
}

.inner-feature-grid-cta {
  margin-top: 48px;
  padding: 0 24px;
}


/* ── Responsive ── */
@media (max-width: 980px) {
  .inner-hero-wrap { width: 100%; padding: 0 16px 16px; }
  .inner-hero { min-height: 420px; padding: 50px 0; border-radius: 12px; }
}

@media (max-width: 900px) {
  .inner-expect-cards { grid-template-columns: 1fr; }
  .inner-expect-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .inner-content-inner { grid-template-columns: 1fr; }
  .inner-content-inner.layout-right { direction: ltr; }
  .inner-feature-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .inner-feature-cards { grid-template-columns: 1fr; }
  .inner-content-inner { padding: 0 20px; }
}
