/* ============================================
   LP-A（Claude Code実演セミナー）固有スタイル
   ディープネイビー × プラチナ / テックブルー
   ============================================ */

/* --- カラー変数の上書き --- */
:root {
  --color-navy-dark: #080C18;
  --color-navy: #1A2548;
  --color-navy-mid: #0E1530;
  --color-accent: #3B82F6;
  --color-accent-hover: #2563EB;
  --color-bg-light: #F1F5F9;
  --color-border-light: rgba(148, 163, 184, 0.15);
  --color-gold: #94A3B8;
  --color-gold-light: #E2E8F0;
  --color-gold-dark: #64748B;
  --color-burgundy: #3B82F6;
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* --- ヒーロー --- */
.hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* フローティング装飾 */
.hero__deco-1 {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(148, 163, 184, 0.06);
  animation: floatSlow 12s ease-in-out infinite;
  pointer-events: none;
}

.hero__deco-2 {
  position: absolute;
  bottom: 22%;
  right: 8%;
  width: 160px;
  height: 80px;
  border-radius: 24px;
  background: rgba(59, 130, 246, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.05);
  transform: rotate(12deg);
  animation: floatSlow 15s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero__deco-3 {
  position: absolute;
  top: 35%;
  right: 18%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.08);
  animation: floatSlow 10s ease-in-out infinite;
  animation-delay: -5s;
  pointer-events: none;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(3deg); }
  66% { transform: translate(-10px, 15px) rotate(-2deg); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 0 4rem;
}

/* セミナータイトル（プラチナグラデーション） */
.hero__seminar-title {
  font-size: clamp(2rem, 9vw, 5.5rem);
  font-weight: var(--fw-black);
  background: linear-gradient(135deg, #94A3B8, #E2E8F0, #CBD5E1, #F1F5F9, #94A3B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 2px 20px rgba(148, 163, 184, 0.3));
}

/* 無料訴求 */
.hero__free-label {
  display: inline-block;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #94A3B8;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

/* 区切り線（プラチナ→ブルー） */
.hero__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #64748B, #94A3B8, #3B82F6);
  border-radius: 1px;
  margin: 0 auto var(--space-md);
}

.hero__title {
  font-size: 2.25rem;
  font-weight: var(--fw-black);
  color: #E8E8E8;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: var(--space-lg) 0 var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* 「Claude Code」プラチナハイライト */
.hero__title-gold {
  background: linear-gradient(135deg, #94A3B8, #E2E8F0, #CBD5E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline;
}

.hero__title-gold::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #64748B, #E2E8F0, #64748B);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-text-fill-color: initial;
  border-radius: 2px;
  opacity: 0.8;
}

.hero__subtitle {
  font-size: var(--fs-base);
  color: rgba(226, 232, 240, 0.7);
  font-weight: var(--fw-medium);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* CTA（テックブルー） */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: #3B82F6;
  color: #FFFFFF;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.hero__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.5);
  background: #2563EB;
}

.hero__cta-note {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: rgba(148, 163, 184, 0.4);
}

.hide-mobile {
  display: none;
}

/* スクロールダウンインジケーター */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(148, 163, 184, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0.3), transparent);
}

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

/* --- セクションヘッダー --- */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  text-align: center;
}

.section-header__divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: var(--space-md);
}

.section-header--center .section-header__divider {
  margin-left: auto;
  margin-right: auto;
}

/* --- カード（テックブルーアクセント） --- */
.capabilities__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cap-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.cap-card:hover {
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.cap-card__number {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  padding: 0.25rem 0.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-sm);
}

.cap-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.cap-card:hover .cap-card__icon {
  background: var(--color-accent);
  transform: scale(1.05);
}

.cap-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  stroke: var(--color-accent);
  transition: all var(--transition-base);
}

.cap-card:hover .cap-card__icon svg {
  color: #FFFFFF;
  stroke: #FFFFFF;
}

.cap-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.cap-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* --- おすすめ --- */
.target-card {
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-base);
}

.target-card:hover {
  background: var(--color-bg-white);
  box-shadow: var(--shadow-lg);
}

.target-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.target-card__icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  stroke: var(--color-accent);
}

.target-card__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-navy-dark);
  line-height: 1.6;
}

.target__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

/* --- 特典セクション --- */
.perks-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

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

.perk-card {
  background: rgba(148, 163, 184, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  padding: var(--space-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.perk-card:hover {
  transform: translateY(-4px);
}

.perk-card__label {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: #93C5FD;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.perk-card__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: #E8E8E8;
  margin-bottom: var(--space-xs);
}

.perk-card__text {
  font-size: var(--fs-sm);
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.8;
}

/* --- 危機感セクション --- */
.urgency-section {
  position: relative;
}

.urgency-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

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

.urgency__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.urgency__icon svg {
  width: 24px;
  height: 24px;
  color: #60A5FA;
  stroke: #60A5FA;
}

/* --- ブリッジコピー（明朝体引用風） --- */
.bridge {
  text-align: center;
  padding: var(--space-xl) 0;
}

.bridge__text {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.6;
  position: relative;
  display: inline-block;
}

.bridge__text::before,
.bridge__text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #64748B, #94A3B8);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.bridge__text::before {
  top: -16px;
}

.bridge__text::after {
  bottom: -16px;
}

.bridge__highlight {
  color: var(--color-accent);
  position: relative;
}

.bridge__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
  z-index: -1;
}

/* --- スクロール連動アニメーション --- */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 日程カード --- */
.schedule-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 20px rgba(8, 12, 24, 0.04);
  transition: all var(--transition-base);
  position: relative;
}

.schedule-card::after {
  content: attr(data-day-label);
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  font-size: 8rem;
  font-weight: var(--fw-black);
  color: rgba(59, 130, 246, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(8, 12, 24, 0.08);
}

.schedule-card__bar {
  width: 6px;
  flex-shrink: 0;
}

.schedule-card__bar--accent {
  background: var(--color-accent);
}

.schedule-card__body {
  padding: var(--space-lg);
  width: 100%;
}

.schedule-card__day-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.schedule-card__date {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--color-navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.schedule-card__date-sub {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

.schedule-card__time {
  color: var(--color-text-sub);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.schedule-card__meta {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.schedule-card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.schedule-card__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-light);
}

/* --- 講師カード --- */
.instructor-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.instructor-layout__image-wrap {
  width: 100%;
  position: relative;
}

.instructor-layout__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  transform: translate(8px, 8px);
  z-index: 0;
  display: none;
}

.instructor-layout__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.instructor-layout__body {
  width: 100%;
}

.instructor__role {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  font-weight: var(--fw-medium);
  margin-bottom: 4px;
}

.instructor__name {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--color-navy-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.instructor__bio {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

.instructor__achievements {
  background: var(--color-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  margin-top: var(--space-md);
}

.instructor__achievements-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-navy-dark);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.instructor__achievements-title svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  stroke: var(--color-accent);
}

.instructor__achievements-list {
  font-size: var(--fs-xs);
  color: var(--color-text-sub);
  line-height: 1.9;
}

.instructor__achievements-list li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 2px;
}

.instructor__achievements-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* --- CTAフォーム --- */
.cta-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-lg);
}

.cta__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: #E8E8E8;
  text-align: center;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta__subtitle-text {
  text-align: center;
  color: rgba(226, 232, 240, 0.6);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-sm);
}

.cta-form-box {
  background: rgba(148, 163, 184, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(148, 163, 184, 0.05);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* 上部グラデーションライン（プラチナ→ブルー） */
.cta-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64748B, #3B82F6, #64748B, transparent);
}

.cta-form-box .form-label {
  color: rgba(226, 232, 240, 0.85);
}

.cta-form-box .form-input,
.cta-form-box .form-select {
  background-color: #0E1530;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #E8E8E8;
  border-radius: var(--radius-lg);
}

.cta-form-box .form-input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.cta-form-box .form-select option {
  background: #080C18;
  color: #E8E8E8;
}

.cta-form-box .form-input:focus,
.cta-form-box .form-select:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.cta-form-box .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(148,163,184,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.cta-form-box__submit {
  width: 100%;
  background: #3B82F6;
  color: #FFFFFF;
  font-weight: var(--fw-black);
  font-size: var(--fs-lg);
  padding: 1.125rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.cta-form-box__submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
  background: #2563EB;
}

.cta-form-box__submit svg {
  transition: transform var(--transition-fast);
}

.cta-form-box__submit:hover svg {
  transform: translateX(4px);
}

/* --- 誘導ブロック --- */
.seminar-link {
  background-color: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.seminar-link__text {
  font-size: var(--fs-sm);
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: var(--space-xs);
}

.seminar-link__link {
  color: #60A5FA;
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seminar-link__link:hover {
  color: #93C5FD;
}

/* --- フッター --- */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.06);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__logo {
  height: 28px;
  opacity: 0.4;
  margin: 0 auto var(--space-sm);
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(148, 163, 184, 0.3);
}

/* --- ネイビー背景の上書き --- */
.section--navy {
  background: linear-gradient(135deg, #080C18 0%, #0E1530 50%, #1A2548 100%);
}

/* ============================================
   レスポンシブ
   ============================================ */

@media (min-width: 640px) {
  .hero__seminar-title {
    white-space: nowrap;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .hide-mobile {
    display: inline;
  }

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

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__inner {
    padding: 8rem 0 6rem;
  }

  .bridge__text {
    font-size: var(--fs-3xl);
  }

  .capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .instructor-layout {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .instructor-layout__image-wrap {
    width: 40%;
  }

  .instructor-layout__image-wrap::after {
    display: block;
  }

  .instructor-layout__body {
    width: 60%;
  }

  .cta-form-box {
    padding: var(--space-2xl);
  }

  .footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__logo {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .hero__glow {
    width: 900px;
    height: 900px;
  }

  .cta__title {
    font-size: var(--fs-4xl);
  }
}
