/* ============================================
   Lyric Ad - Landing Page Styles
   Tone: lyricad-banner-white.html
   Colors: #ff3366, #ff6644, #ffaa22, #1a1a2e
   Fonts: Outfit + Noto Sans JP
   Breakpoint: 767px
   ============================================ */

:root {
  --pink: #ff3366;
  --orange: #ff6644;
  --gold: #ffaa22;
  --dark: #1a1a2e;
  --gray: #999999;
  --light-gray: #f5f5f7;
  --white: #ffffff;
  --gradient-accent: linear-gradient(90deg, var(--pink), var(--orange), var(--gold));
  --gradient-cta: linear-gradient(135deg, var(--pink), var(--orange));
  --font-en: 'Outfit', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Utility ---- */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.section-logo {
  height: 36px;
  width: auto;
}

.section-heading {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 28px;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1.5;
}

/* Responsive line breaks (tablet/small desktop only) */
.br-narrow {
  display: none;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .br-narrow {
    display: block;
  }
}

/* Sound hint */
.hero__sound-hint {
  font-family: var(--font-jp);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-align: center;
  display: none;
  transition: opacity 0.4s ease;
}

.hero__sound-hint.is-ready {
  display: block;
}

.hero__sound-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---- Unmute Button (shared) ---- */
.unmute-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 51, 102, 0.9);
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: unmutePulse 2s ease-in-out infinite;
}

.unmute-btn.is-ready {
  display: flex;
}

.unmute-btn:hover {
  background: rgba(255, 51, 102, 1);
}

.unmute-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.9);
}

.unmute-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes unmutePulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 51, 102, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(255, 51, 102, 0.7); }
}

/* Sample card unmute: smaller size */
.sample-unmute-btn {
  padding: 8px 14px;
  font-size: 11px;
  gap: 6px;
  bottom: 12px;
}

.sample-unmute-btn .unmute-btn__icon {
  width: 14px;
  height: 14px;
}

.section-heading .highlight {
  color: var(--pink);
}

/* ---- YouTube External Link ---- */
.yt-external-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: rgba(26, 26, 46, 0.08);
  border-radius: 6px;
  color: var(--gray);
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.yt-external-link:hover {
  background: rgba(255, 51, 102, 0.1);
  color: var(--pink);
}

/* Hero context: light text on dark bg */
.hero__video-col .yt-external-link {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.hero__video-col .yt-external-link:hover {
  background: rgba(255, 51, 102, 0.3);
  color: var(--white);
}

/* YouTube links wrap (YouTubeで見る + チャンネルボタン) */
.yt-links-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* YouTube Channel button (gradient outline) */
.yt-channel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}

.yt-channel-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 52px;
  background: var(--gradient-accent);
  z-index: -1;
}

.yt-channel-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--white);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.yt-channel-btn:hover::after {
  opacity: 0;
}

.yt-channel-btn:hover {
  color: var(--white);
}

.yt-channel-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.yt-channel-btn__ext {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* Dark variant (footer) */
.yt-channel-btn--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.yt-channel-btn--dark::after {
  background: var(--dark);
}

.yt-channel-btn--dark:hover {
  color: var(--white);
}

.yt-external-link__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ---- CTA Button ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 56px;
  background: var(--gradient-cta);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.25);
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 100%);
  border-radius: 50px;
  pointer-events: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.35);
}

.cta-btn__ext {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-top: 24px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.cta-wrap .cta-btn,
.cta-wrap .line-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: #06C755;
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.25);
}

.line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 199, 85, 0.35);
}

.line-btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.line-btn__note-mark {
  font-size: 11px;
  vertical-align: super;
  margin-left: 2px;
}

.line-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.line-btn-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .cta-btn {
    font-size: 15px;
    padding: 16px 32px;
    letter-spacing: 2px;
  }

  .line-btn {
    font-size: 13px;
    padding: 12px 24px;
  }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.75);
  z-index: 1;
}

.hero__top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 10;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 24px 60px;
  width: 100%;
  max-width: 1440px;
}

.hero__tagline {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 6px;
  text-align: center;
}

.hero__logo {
  height: 52px;
  width: auto;
}

.hero__catch {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 2px;
  text-align: center;
}

.hero__catch .highlight {
  color: var(--pink);
}

.hero__subcopy {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
}

.hero__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero__video-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.hero__video-inner > .yt-external-link {
  align-self: flex-end;
}

.hero__video-embed iframe,
.hero__video-embed #heroYTPlayer {
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero EQ decoration */
.hero__eq {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  opacity: 0.2;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__eq-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--gradient-cta);
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.hero__eq-bar:nth-child(odd) { animation-delay: 0.2s; }
.hero__eq-bar:nth-child(3n) { animation-delay: 0.5s; }

@keyframes eqPulse {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Desktop hero: two columns */
@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 120px 48px 100px;
  }

  .hero__text-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
  }

  .hero__tagline,
  .hero__catch,
  .hero__subcopy {
    text-align: left;
  }

  .hero__video-col {
    flex: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero__video-inner {
    max-width: 100%;
  }

  .hero__catch {
    font-size: 44px;
  }

  .hero__logo {
    height: 60px;
  }
}

/* Mobile hero: single column */
@media (max-width: 767px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 100px 20px 80px;
  }

  .hero__text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero__video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .hero__catch {
    font-size: 26px;
  }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent);
  opacity: 0.3;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about__body {
  font-size: 16px;
  line-height: 2;
  color: #555;
  max-width: 780px;
  text-align: left;
}

.about__body p {
  margin-bottom: 1.2em;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__note {
  font-size: 13px;
  color: var(--gray);
  max-width: 780px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

/* ---- About Carousel (peek-style) ---- */
.about__carousel {
  position: relative;
  width: 100%;
  max-width: 780px;
}

.about__carousel-viewport {
  position: relative;
  overflow: hidden;
}

.about__carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.about__carousel-track img {
  flex: 0 0 60%;
  width: 60%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.92);
  opacity: 0.5;
}

.about__carousel-track img.is-current {
  transform: scale(1);
  opacity: 1;
}

.about__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.6);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.about__carousel-btn:hover {
  background: rgba(255, 51, 102, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.about__carousel-btn svg {
  width: 20px;
  height: 20px;
}

.about__carousel-btn--prev {
  left: 12px;
}

.about__carousel-btn--next {
  right: 12px;
}

.about__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.about__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about__carousel-dot.is-active {
  background: var(--pink);
  transform: scale(1.25);
}

@media (max-width: 767px) {
  .about__carousel-track img {
    flex: 0 0 65%;
    width: 65%;
  }

  .about__carousel-btn {
    width: 32px;
    height: 32px;
  }

  .about__carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .about__carousel-btn--prev {
    left: 6px;
  }

  .about__carousel-btn--next {
    right: 6px;
  }

  .about__carousel-dot {
    width: 6px;
    height: 6px;
  }
}

/* ================================================
   SAMPLES SECTION
   ================================================ */
.samples {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.samples__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.samples__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.samples__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.sample-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sample-card {
    flex-direction: row;
    align-items: center;
  }

  .sample-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.sample-card__info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sample-card__motif {
  font-size: 13px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 2px;
}

.sample-card__title {
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.sample-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.sample-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.sample-card__meta-row {
  display: flex;
  gap: 8px;
}

.sample-card__meta-label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--dark);
  min-width: 80px;
}

.sample-card__video {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--light-gray);
}

.sample-card__video-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 300px;
}

.sample-card__video-inner > .yt-external-link {
  align-self: flex-end;
}

.sample-card__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sample-card__video-wrap iframe,
.sample-card__video-wrap .sample-yt-player {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .sample-card__info {
    padding: 28px 20px;
  }

  .sample-card__video {
    padding: 20px;
  }

  .sample-card__video-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .sample-card__video-inner {
    width: 260px;
  }
}

/* ================================================
   FLOW SECTION
   ================================================ */
.flow {
  padding: 100px 0;
  background: var(--white);
}

.flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow__image {
  width: 100%;
  max-width: 860px;
  overflow: hidden;
}

.flow__image picture {
  display: block;
  width: 100%;
}

.flow__image img {
  width: 100%;
}

.flow__note {
  font-size: 15px;
  color: #666;
  text-align: center;
  line-height: 1.8;
  max-width: 700px;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing {
  padding: 100px 0;
  background: var(--light-gray);
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.pricing__inner > .section-heading {
  text-align: center;
}

.pricing__cards {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .pricing__cards {
    flex-direction: column;
    align-items: center;
  }
}

.price-card {
  flex: 1;
  max-width: 340px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.price-card__header {
  padding: 32px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-card__plan {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--dark);
}

.price-card__format-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.price-card__format-icons img {
  height: 48px;
  width: auto;
}

.price-card__format-icons span {
  font-weight: 700;
  color: var(--gray);
  font-size: 16px;
}

.price-card__body {
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.price-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.price-card__feature {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.price-card__optimization {
  font-size: 14px;
  color: #666;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.price-card__optimization .unavailable {
  color: #ccc;
}

.price-card__price-area {
  margin-top: auto;
  padding: 24px;
  background: var(--light-gray);
  text-align: center;
}

.price-card__price {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 32px;
  color: var(--dark);
  line-height: 1.2;
}

.price-card__price-sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .price-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ---- Pricing: Discount variant (広告運用セット) ---- */
.price-card__price-area--discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 24px;
  flex: 1;
}

.price-card__price--original {
  font-size: 24px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 600;
}

.price-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.price-card__arrow svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
}

.price-card__price--discounted {
  font-size: 40px;
  color: var(--pink);
  font-weight: 900;
}

/* ---- Pricing: Plus section (運用サポート) ---- */
.pricing__plus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  max-width: 700px;
  text-align: center;
}

.pricing__plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.3);
}

.pricing__plus-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.8;
}

.pricing__plus-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

/* Alternate pricing background */
.pricing--set {
  background: var(--white);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq__list {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
  width: 100%;
}

.faq-item__question:hover {
  color: var(--pink);
}

.faq-item__q-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--pink);
  flex-shrink: 0;
  line-height: 1.6;
}

.faq-item__q-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  background: var(--gray);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-item__toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 24px;
}

.faq-item__a-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1.6;
}

.faq-item__a-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  padding: 48px 24px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

.footer__video {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.footer__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.footer__video-wrap #footerYTPlayer {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-unmute-btn {
  bottom: 12px;
}

.footer__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.footer__company-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer__company-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__company-name:hover {
  color: var(--pink);
}

.footer__ext-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__copy {
  font-family: var(--font-en);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--pink);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ================================================
   VIDEO BG PLACEHOLDER (CSS pattern)
   ================================================ */
.hero__video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 102, 68, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 170, 34, 0.08) 0%, transparent 50%),
    var(--dark);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
