/* ===================================
   MEDAICHI LP
   Modern, editorial design
   =================================== */

/* --- Fonts (Adobe Typekit) --- */

/* --- Custom Properties --- */
:root {
  --purple: #5d40c6;
  --blue: #05b2f8;
  --pink: #e2229f;
  --navy: #2d1b69;
  --blue-dark: #0490cc;
  --purple-dark: #4a32a0;
  --gold: #f0c040;
  --green: #06C755;
  --green-dark: #04A846;
  --red: #CC3333;
  --gradient-main: linear-gradient(120deg, #5d40c6 0%, #05b2f8 50%, #e2229f 85%, #e2229f 100%);
  --gradient-reverse: linear-gradient(300deg, #5d40c6 0%, #05b2f8 50%, #e2229f 85%, #e2229f 100%);
  --gradient-soft: linear-gradient(120deg, rgba(93,64,198,0.08) 0%, rgba(5,178,248,0.08) 50%, rgba(226,34,159,0.08) 100%);
  --bg-light: #F5F7FA;
  --bg-cream: #FAF8F5;
  --text: #1a1a1a;
  --text-sub: #333;
  --text-light: #333;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { font-family: "corporate-logo-ver2", 'Noto Sans JP', sans-serif; font-weight: 700; line-height: 1.4; }

/* --- Layout --- */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.anim[data-delay="1"] { transition-delay: 0.15s; }
.anim[data-delay="2"] { transition-delay: 0.3s; }
.anim[data-delay="3"] { transition-delay: 0.45s; }
.anim[data-delay="4"] { transition-delay: 0.6s; }
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   HEADER
   =================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.95);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1120px; margin: 0 auto; padding: 0 1.25rem;
}
@media (min-width: 768px) { .header__inner { padding: 0 2rem; } }
.header__logo-img { height: 36px; width: auto; }

.header__right {
  display: flex; align-items: center; gap: 10px;
}

.header__btn {
  display: inline-flex; align-items: center;
  font-size: 0.8rem; font-weight: 700;
  padding: 8px 20px; border-radius: 100px;
  transition: all 0.3s ease;
}
.header__btn--login {
  color: var(--purple);
  border: 1.5px solid var(--purple);
  background: transparent;
}
.header__btn--login:hover {
  background: var(--purple); color: #fff;
  transform: translateY(-1px);
}
.header__btn--register {
  color: #fff;
  background: var(--gradient-main);
  background-size: 200% 100%;
}
.header__btn--register:hover {
  background-position: 100% 0%;
  transform: translateY(-1px);
}

.header__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 8px 20px; border-radius: 100px;
  transition: all 0.3s ease;
}
.header__cta:hover { background: var(--green-dark); transform: translateY(-1px); }

@media (max-width: 767px) {
  .header__btn--login { padding: 6px 12px; font-size: 0.7rem; }
  .header__btn--register { padding: 6px 12px; font-size: 0.7rem; }
  .header__cta { display: none; }
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #fff;
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem; padding: 8rem 2.5rem 4rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem; padding: 10rem 3rem 5rem;
  }
}

.hero__left { text-align: left; }

.hero__sub {
  color: var(--text-sub);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 700;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--navy); margin-bottom: 2rem;
}
.hero__title-accent {
  display: block;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.35; letter-spacing: 0.02em;
  font-weight: 900;
  color: var(--navy);
}

.hero__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2.5rem;
}
.hero__tags span {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 16px; border-radius: 100px;
  background: var(--gradient-soft);
  border: 1px solid rgba(93,64,198,0.15);
  color: var(--purple);
}
.hero__action { display: flex; }

/* Hero right - visual with blobs */
.hero__right { display: none; }
@media (min-width: 768px) {
  .hero__right { display: block; }
}

.hero__visual {
  position: relative;
  width: 100%;
  padding: 2rem;
}

/* Organic blob shapes */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero__blob--1 {
  width: 85%; height: 75%;
  top: 5%; right: -5%;
  background: linear-gradient(135deg, rgba(93,64,198,0.15) 0%, rgba(5,178,248,0.12) 100%);
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
}
.hero__blob--2 {
  width: 45%; height: 40%;
  bottom: 0; left: -5%;
  background: linear-gradient(135deg, rgba(5,178,248,0.12) 0%, rgba(226,34,159,0.1) 100%);
  border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%;
}
.hero__blob--3 {
  width: 18%; height: 18%;
  top: 0; left: 15%;
  background: rgba(93,64,198,0.1);
  border-radius: 50%;
}

/* Hero images */
.hero__img-main {
  position: relative; z-index: 1;
  width: 80%; margin-left: auto;
  border-radius: 30% 70% 55% 45% / 55% 40% 60% 45%;
  overflow: hidden;
}
.hero__img-main img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}

.hero__img-sub {
  position: absolute; z-index: 2;
  bottom: 5%; left: 0;
  width: 45%;
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.hero__img-sub img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  display: block;
}

/* Hero staged entrance animation */
.hero-anim {
  opacity: 0; transform: translateY(30px);
  animation: hero-enter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim[data-hero-delay="1"] { animation-delay: 0.3s; }
.hero-anim[data-hero-delay="2"] { animation-delay: 0.5s; }
.hero-anim[data-hero-delay="3"] { animation-delay: 0.7s; }
.hero-anim[data-hero-delay="4"] { animation-delay: 0.9s; }
@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile hero image */
@media (max-width: 767px) {
  .hero__right { display: block; }
  .hero__visual { padding: 1rem 0; }
  .hero__blob--1 { width: 70%; height: 65%; }
  .hero__blob--3 { display: none; }
  .hero__img-main { width: 70%; }
  .hero__img-sub { width: 40%; }
}

/* ===================================
   SECTIONS - Common
   =================================== */
.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 4.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 5.5rem 0; } }

.section__header { margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section__header { margin-bottom: 3rem; } }

.section__num {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(3rem, 8vw, 5.5rem);
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.5rem;
}
.section__en {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.2em;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.section__lead {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700; max-width: 520px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-main); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 16px 36px; border-radius: 100px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(93,64,198,0.35);
  background-position: 100% 0%;
}
.btn-primary--lg { padding: 20px 48px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--purple); font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 100px;
  border: 2px solid var(--purple);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--purple); color: #fff;
  transform: translateY(-2px);
}

/* ===================================
   PROBLEMS
   =================================== */
.section--problems { background: var(--bg-light); }

.problem-list { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .problem-list { gap: 5rem; } }

.problem-item {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 768px) {
  .problem-item { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .problem-item--reverse .problem-item__img { order: 2; }
  .problem-item--reverse .problem-item__body { order: 1; }
}

.problem-item__img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.problem-item__img img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.6s ease;
}

.problem-item__num {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2; line-height: 1; margin-bottom: 0.5rem;
}
.problem-item__body h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--navy); margin-bottom: 1rem;
}
.problem-item__body p {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700; line-height: 1.8;
}

/* ===================================
   FEATURES
   =================================== */
.section--features { background: #fff; }

.feature-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .feature-grid { gap: 2.5rem; }
}

.feature-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}

.feature-card__visual {
  position: relative; overflow: hidden;
}
.feature-card__visual img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card__num {
  position: absolute; bottom: 0; right: 12px;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 5rem; line-height: 1;
  color: #fff; opacity: 0.25;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.feature-card__body {
  padding: 1.5rem 1.5rem 2rem;
}
.feature-card__body h3 {
  font-size: 1.1rem;
  color: var(--navy); margin-bottom: 1rem;
  line-height: 1.5;
  padding-left: 0.85rem;
  border-left: 3px solid var(--purple);
}
.feature-card__body p {
  font-size: 0.85rem; color: var(--text-sub); font-weight: 700; line-height: 1.9;
}

/* ===================================
   STEPS
   =================================== */
.section--steps { background: var(--bg-light); }

.steps-vertical {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.step-card {
  display: flex; align-items: center; gap: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e0e0e0;
  padding: 2rem 2.5rem;
  width: 100%;
}

.step-card__num {
  flex-shrink: 0;
  text-align: center;
  padding-right: 1.5rem;
  border-right: 1px solid #e0e0e0;
}
.step-card__label {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--purple);
}
.step-card__number {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 2.5rem; line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.step-card__icon svg { width: 26px; height: 26px; }

.step-card__body { flex: 1; }
.step-card__body h4 {
  font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem;
}
.step-card__body p {
  font-size: 0.85rem; color: var(--text-sub); font-weight: 700; line-height: 1.7;
}

.step-card__connector {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); opacity: 0.35;
  margin: 0.5rem 0;
}
.step-card__connector svg { width: 24px; height: 24px; }

@media (max-width: 767px) {
  .step-card { flex-wrap: wrap; gap: 1rem; padding: 1.5rem; }
  .step-card__num { padding-right: 1rem; }
  .step-card__number { font-size: 2rem; }
  .step-card__icon { width: 44px; height: 44px; }
  .step-card__icon svg { width: 22px; height: 22px; }
}

/* Mobile steps layout from old responsive */

/* ===================================
   DEMO
   =================================== */
.section--demo { background: #fff; }
.demo-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 768px) {
  .demo-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.demo-layout__text .section__title { margin-bottom: 1.5rem; }
.demo-layout__text p { font-size: 0.9rem; color: var(--text-sub); font-weight: 700; margin-bottom: 1.5rem; }

.demo-features {
  list-style: none; margin-bottom: 2rem;
}
.demo-features li {
  position: relative; padding-left: 1.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--navy);
  margin-bottom: 0.75rem;
}
.demo-features li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
}

.phone-mockup {
  max-width: 320px; margin: 0 auto;
  border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #1a1a1a;
  background: #1a1a1a;
}
.phone-mockup img { width: 100%; display: block; border-radius: 24px; }

/* ===================================
   PRICING
   =================================== */
.section--pricing { background: var(--bg-light); }

/* Pricing - header center */
.section__header--center { text-align: center; }
.section__header--center .section__lead { margin: 0 auto; }

.pricing-title-zero {
  font-family: "corporate-logo-ver2", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: baseline;
  line-height: 1;
}

/* Pricing cards row */
.pricing-cards {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.pricing-card {
  flex: 1; min-width: 200px; max-width: 300px;
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem; text-align: center;
  border: 1px solid #e8eaed;
}
.pricing-card__label {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.5rem;
}
.pricing-card__price {
  font-family: "corporate-logo-ver2", sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.75rem;
}
.pricing-card__zero {
  font-size: clamp(3rem, 8vw, 5rem);
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-card__note {
  font-size: 0.75rem; color: var(--text-sub); font-weight: 700;
}
.pricing-plus {
  font-family: "corporate-logo-ver2", sans-serif;
  font-size: 2rem; font-weight: 700; color: #ccc;
  padding: 0 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .pricing-cards { flex-direction: column; gap: 1rem; }
  .pricing-card { max-width: 100%; width: 100%; }
  .pricing-plus { transform: rotate(90deg); padding: 0; }
}

/* Campaign banner */
.pricing-campaign {
  margin-bottom: 3rem;
}
.pricing-campaign__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: #fff;
  position: relative; overflow: hidden;
}
.pricing-campaign__badge {
  font-size: 0.85rem; font-weight: 700;
  padding: 6px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
}
.pricing-campaign__text {
  font-size: 1.1rem; font-weight: 700; line-height: 1.6;
}
.pricing-campaign__zero {
  font-family: "corporate-logo-ver2", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem); font-weight: 700;
  line-height: 1; opacity: 0.9;
}
.pricing-campaign__zero small {
  font-size: 0.4em;
}
@media (max-width: 767px) {
  .pricing-campaign__inner { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}

/* Pricing detail table */
.pricing-detail {
  max-width: 640px; margin: 0 auto;
}
.pricing-detail__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; text-align: center;
}
.pricing-detail__table {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  border: 1px solid #e8eaed;
}
.pricing-detail__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.pricing-detail__row:not(:last-child) { border-bottom: 1px solid #eee; }
.pricing-detail__label {
  font-weight: 700; font-size: 0.9rem; color: var(--navy);
}
.pricing-detail__value {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700;
}

/* ===================================
   FAQ
   =================================== */
.section--faq { background: #fff; }

.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid #e8eaed;
}
.faq-item:first-child { border-top: 1px solid #e8eaed; }

.faq-item__q {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q span:nth-child(2) { flex: 1; }
.faq-item__arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--text-sub);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__arrow { transform: rotate(180deg); }

.faq-item__icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
  background: var(--gradient-main); color: #fff;
}
.faq-item__icon--a {
  background: var(--bg-light); color: var(--purple);
}

.faq-item__a {
  display: flex; gap: 1rem;
  padding: 0 0 1.5rem 0;
}
.faq-item__a p {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700;
  line-height: 1.8;
}

/* ===================================
   VOICE
   =================================== */
.section--voice { background: var(--bg-light); }

.voice-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .voice-layout { grid-template-columns: 0.35fr 0.65fr; gap: 3rem; }
}

.voice-layout__left .section__title { margin-bottom: 1.5rem; }
.voice-layout__desc {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700;
  line-height: 1.8;
}

.voice-layout__right {
  display: flex; flex-direction: column; gap: 2rem;
}

/* Speech bubble card */
.voice-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.voice-card__avatar {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.voice-card__content { flex: 1; }

.voice-card__bubble {
  position: relative;
  background: #fff;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8eaed;
}
.voice-card__bubble::before {
  content: '';
  position: absolute; top: 0; left: -10px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 10px 12px 0;
  border-color: transparent #e8eaed transparent transparent;
}
.voice-card__bubble::after {
  content: '';
  position: absolute; top: 1px; left: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 9px 11px 0;
  border-color: transparent #fff transparent transparent;
}
.voice-card__bubble p {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700;
  line-height: 1.8;
}

.voice-card__author {
  margin-top: 0.75rem; padding-left: 0.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.voice-card__photo {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--bg-light);
  border: 2px solid #e8eaed;
  display: flex; align-items: center; justify-content: center;
}
.voice-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Placeholder icon when no image */
.voice-card__photo:empty::after {
  content: '';
  display: block; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.voice-card__info strong {
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  display: block;
}
.voice-card__info span {
  font-size: 0.75rem; color: var(--text-sub); font-weight: 700;
}

/* ===================================
   LINEUP
   =================================== */
.section--lineup { background: #fff; overflow: hidden; }

.lineup-scroll {
  width: 100%; overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.lineup-scroll::-webkit-scrollbar { display: none; }

.lineup-track {
  display: flex; gap: 24px;
  padding: 0 max(1.25rem, calc((100vw - 1120px) / 2 + 2.5rem));
  padding-bottom: 1rem;
}

.lineup-card {
  flex-shrink: 0; width: 280px;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lineup-card__img { position: relative; }
.lineup-card__img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.lineup-card__badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.9);
  color: var(--purple); backdrop-filter: blur(4px);
}
.lineup-card__coming {
  width: 100%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light);
}
.lineup-card__coming span {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.9rem; color: var(--text-light); font-weight: 700; letter-spacing: 0.1em;
}
.lineup-card__body { padding: 1.25rem; }
.lineup-card__body h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.lineup-card__body p { font-size: 0.78rem; color: var(--text-light); font-weight: 700; }

/* ===================================
   CTA
   =================================== */
.section--cta {
  background: var(--gradient-main);
  padding: 0;
}
.section--cta .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) {
  .section--cta .container { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

.cta-inner { text-align: center; }
.cta-inner__badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 8px 22px; border-radius: 100px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.cta-inner h2 {
  color: #fff; font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  margin-bottom: 1rem; line-height: 1.4;
}
.cta-inner h2 span { color: rgba(180,210,240,0.9); }
.cta-inner__sub {
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.cta-inner .btn-primary {
  margin-bottom: 2.5rem;
  background: #fff; color: var(--purple);
  background-size: unset;
}
.cta-inner .btn-primary svg { stroke: var(--purple); }
.cta-inner .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.9);
}
.cta-inner__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.cta-inner__trust span {
  font-size: 0.75rem; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

/* ===================================
   SELLER
   =================================== */
.section--seller { background: #fff; padding: 3rem 0; }
@media (min-width: 768px) { .section--seller { padding: 4rem 0; } }

.seller-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-light);
  border: 1px solid #e5e8ec;
}
.seller-card__inner {
  padding: 3rem 2rem; text-align: center;
  max-width: 600px; margin: 0 auto;
}
@media (min-width: 768px) { .seller-card__inner { padding: 4rem 3rem; } }
.seller-card h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--navy); margin-bottom: 1rem;
}
.seller-card p {
  font-size: 0.9rem; color: var(--text-sub); font-weight: 700; line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 3rem 0 2rem;
  background: #1e1245;
}
.footer .container { text-align: center; }
.footer__logo { margin-bottom: 1rem; }
.footer__logo img { height: 28px; width: auto; margin: 0 auto; filter: brightness(10); }
.footer__operator { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.footer__links {
  display: flex; justify-content: center; gap: 2rem;
  margin-bottom: 2rem;
}
.footer__links a {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer__links a:hover { color: rgba(255,255,255,0.9); }
.footer__copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* ===================================
   FLOATING CTA (mobile)
   =================================== */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 1rem; text-align: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta .btn-primary { width: 100%; justify-content: center; }
@media (min-width: 768px) { .floating-cta { display: none; } }

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 767px) {
  .section__num { font-size: 3rem; }
  .section__header { margin-bottom: 2.5rem; }

  .demo-layout__phone { order: -1; }
}
