:root {
  --bg: #fcf8fc;
  --surface: rgba(255,255,255,.86);
  --primary: #8c69a6;
  --primary-dark: #67497e;
  --primary-soft: #eadcf2;
  --text: #5b4f63;
  --text-soft: #7f7387;
  --line: rgba(140,105,166,.12);
  --shadow: 0 24px 60px rgba(103,78,121,.10);
  --shadow-soft: 0 10px 24px rgba(103,78,121,.05);
  --r-xl: 32px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(231,215,240,.86), transparent 24%),
    radial-gradient(circle at left 36%, rgba(245,237,248,.92), transparent 18%),
    linear-gradient(180deg, #fcf8fc 0%, #f8f3fa 100%);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

body::after {
  content: '';
  display: block;
  height: 86px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { font: inherit; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(232,216,241,.95), transparent 26%),
    linear-gradient(180deg, rgba(252,248,252,.98) 0%, rgba(248,243,250,.98) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .75s ease, visibility .75s ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-card {
  min-width: min(90vw, 360px);
  padding: 30px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(140,105,166,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: center;
  transform: scale(1);
  transition: transform .65s ease, opacity .65s ease;
}

.intro-screen.is-hidden .intro-card {
  transform: scale(.96);
  opacity: 0;
}

.intro-logo-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(140,105,166,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(122,90,145,.10);
  animation: breathe 2.2s ease-in-out infinite;
}

.intro-logo-wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.intro-title {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary-dark);
}

.intro-text {
  margin: 0;
  color: var(--text-soft);
  font-size: .95rem;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb.one {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -100px;
  background: rgba(226,208,238,.55);
}

.bg-orb.two {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 760px;
  background: rgba(243,234,247,.96);
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252,248,252,.76);
  border-bottom: 1px solid rgba(255,255,255,.48);
  transition: background .22s ease, box-shadow .22s ease;
}

.header.is-scrolled {
  background: rgba(252,248,252,.93);
  box-shadow: 0 10px 24px rgba(103,78,121,.06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-with-logo {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  line-height: .95;
  color: var(--primary-dark);
  letter-spacing: -.02em;
}

.brand span {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: .97rem;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, opacity .22s ease;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #9876b1 0%, #7f5d98 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(128,93,153,.16);
}

.btn-secondary {
  background: rgba(255,255,255,.76);
  color: var(--primary-dark);
  border-color: rgba(140,105,166,.10);
  box-shadow: none;
  opacity: .88;
}

.hero {
  padding: 50px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.title {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--primary-dark);
}

.desc {
  font-size: 1rem;
  max-width: 560px;
  margin: 0 0 20px;
}

.desc strong {
  color: var(--primary-dark);
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions-center {
  justify-content: center;
}

.hero-points {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 640px;
}

.hero-point {
  padding: 13px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,238,249,.96));
  border: 1px solid rgba(140,105,166,.14);
  box-shadow: 0 12px 22px rgba(103,78,121,.06);
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.4;
}

.image-card {
  width: 100%;
  padding: 10px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 22px;
}

.carousel-section {
  padding: 10px 0 18px;
}

.carousel-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}

.carousel-heading h3 {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--primary-dark);
  line-height: 1;
}

.carousel-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: .96rem;
}

.carousel-box {
  position: relative;
  padding: 12px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(246,239,248,.96));
  border: 1px solid rgba(140,105,166,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform .38s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  user-select: none;
}

.carousel-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  pointer-events: none;
  -webkit-user-drag: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(140,105,166,.14);
  background: rgba(255,255,255,.95);
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}

.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(140,105,166,.22);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot.is-active {
  width: 24px;
  background: var(--primary);
}

.section {
  padding: 26px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #dcc8ea;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill.soft {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.section-heading h2,
.journey-copy h2,
.investment h2 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--primary-dark);
}

.section-heading p,
.journey-copy p {
  margin: 0;
  color: var(--text-soft);
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.card,
.journey-wrap,
.investment,
.closing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card { padding: 24px; }

.card.soft {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,239,248,.96));
}

.card h3 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

ul.clean li {
  position: relative;
  padding-left: 20px;
  font-size: .97rem;
}

ul.clean li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(234,220,242,.82);
}

.journey-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  padding: 24px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.num {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #9775b0 0%, #805e99 100%);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: .98rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
}

.investment {
  text-align: center;
  padding: 30px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,239,248,.98));
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: .96;
  color: var(--primary-dark);
  margin: 8px 0 6px;
  font-weight: 700;
}

.sub {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.closing {
  padding: 34px 20px;
  text-align: center;
  background: linear-gradient(135deg, #9b7caf 0%, #87689c 100%);
  color: #fff;
}

.closing .script {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.1;
}

.closing .sub2 {
  margin: 0 0 12px;
  font-size: 1rem;
  opacity: .96;
}

.closing h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
}

.fab-nav {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 45;
  width: 124px;
  height: 124px;
  pointer-events: none;
}

.fab-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.logo-fab {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(140,105,166,.18);
  box-shadow: 0 10px 22px rgba(122, 90, 145, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.logo-fab img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.logo-fab:focus,
.logo-fab:focus-visible,
.logo-fab:active {
  outline: none !important;
  box-shadow: 0 10px 22px rgba(122, 90, 145, .08);
}

.fab-nav.is-open .logo-fab,
.logo-fab:hover {
  transform: translate(-50%, -50%) translateY(-2px) scale(1.03);
  background: rgba(255,255,255,.30);
  border-color: rgba(140,105,166,.24);
  box-shadow: 0 14px 28px rgba(122, 90, 145, .12);
}

.fab-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.72);
  opacity: 0;
  min-width: 98px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  color: var(--primary-dark);
  border: 1px solid rgba(140,105,166,.12);
  box-shadow: var(--shadow-soft);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    opacity .24s ease,
    background .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.fab-nav.is-open .fab-item {
  opacity: 1;
  pointer-events: auto;
}

.fab-nav.is-open .fab-item:nth-child(1) {
  transform: translate(-50%, -50%) translate(-142px, -98px) scale(1);
  transition-delay: .02s;
}

.fab-nav.is-open .fab-item:nth-child(2) {
  transform: translate(-50%, -50%) translate(-74px, -156px) scale(1);
  transition-delay: .06s;
}

.fab-nav.is-open .fab-item:nth-child(3) {
  transform: translate(-50%, -50%) translate(0, -178px) scale(1);
  transition-delay: .10s;
}

.fab-nav.is-open .fab-item:nth-child(4) {
  transform: translate(-50%, -50%) translate(74px, -156px) scale(1);
  transition-delay: .14s;
}

.fab-nav.is-open .fab-item:nth-child(5) {
  transform: translate(-50%, -50%) translate(142px, -98px) scale(1);
  transition-delay: .18s;
}

.fab-nav.is-open .fab-item:nth-child(1):hover { transform: translate(-50%, -50%) translate(-142px, -98px) scale(1.02); }
.fab-nav.is-open .fab-item:nth-child(2):hover { transform: translate(-50%, -50%) translate(-74px, -156px) scale(1.02); }
.fab-nav.is-open .fab-item:nth-child(3):hover { transform: translate(-50%, -50%) translate(0, -178px) scale(1.02); }
.fab-nav.is-open .fab-item:nth-child(4):hover { transform: translate(-50%, -50%) translate(74px, -156px) scale(1.02); }
.fab-nav.is-open .fab-item:nth-child(5):hover { transform: translate(-50%, -50%) translate(142px, -98px) scale(1.02); }

.wa {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 40;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ff 100%);
  color: var(--primary-dark);
  border: 1px solid rgba(139,103,165,.14);
  box-shadow: 0 16px 30px rgba(122, 90, 145, .12);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa::before {
  content: '✿';
  font-size: .88rem;
  line-height: 1;
  color: #8f69a9;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .journey-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .actions {
    justify-content: center;
  }

  .hero-points {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-visual {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .carousel-slide img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .brand-logo { width: 58px; height: 58px; }
  .brand h1 { font-size: 2.3rem; }
  .brand span { font-size: .9rem; }

  .hero { padding-top: 18px; }
  .title { font-size: clamp(3rem, 12vw, 4.2rem); }
  .desc { font-size: .97rem; }
  .image-card img { height: 420px; border-radius: 18px; }

  .carousel-arrow { width: 40px; height: 40px; font-size: 1.15rem; }
  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }

  .card,
  .journey-wrap,
  .investment,
  .closing,
  .carousel-box {
    border-radius: 24px;
  }

  .fab-nav {
    width: 108px;
    height: 108px;
  }

  .logo-fab {
    width: 92px;
    height: 92px;
  }

  .logo-fab img {
    width: 74px;
    height: 74px;
  }

  .fab-item {
    min-width: 90px;
    min-height: 40px;
    font-size: .78rem;
  }

  .fab-nav.is-open .fab-item:nth-child(1) { transform: translate(-50%, -50%) translate(-112px, -88px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(2) { transform: translate(-50%, -50%) translate(-58px, -138px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(3) { transform: translate(-50%, -50%) translate(0, -156px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(4) { transform: translate(-50%, -50%) translate(58px, -138px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(5) { transform: translate(-50%, -50%) translate(112px, -88px) scale(1); }

  .fab-nav.is-open .fab-item:nth-child(1):hover { transform: translate(-50%, -50%) translate(-112px, -88px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(2):hover { transform: translate(-50%, -50%) translate(-58px, -138px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(3):hover { transform: translate(-50%, -50%) translate(0, -156px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(4):hover { transform: translate(-50%, -50%) translate(58px, -138px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(5):hover { transform: translate(-50%, -50%) translate(112px, -88px) scale(1.02); }
}

@media (max-width: 560px) {
  .container { width: min(94%, var(--container)); }
  .brand-with-logo { gap: 12px; }
  .brand-logo { width: 52px; height: 52px; }
  .brand h1 { font-size: 2.1rem; }
  .brand span { font-size: .86rem; }

  .eyebrow {
    font-size: .7rem;
    min-height: 32px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .title {
    font-size: 2.8rem;
    line-height: .94;
    margin-bottom: 12px;
  }

  .actions {
    flex-direction: column;
  }

  .btn { width: 100%; }

  .btn-secondary {
    width: 100%;
    opacity: .78;
  }

  .hero-points {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-point {
    padding: 12px 13px;
    font-size: .85rem;
    border-radius: 16px;
  }

  .image-card {
    padding: 8px;
    border-radius: 22px;
  }

  .image-card img { height: 350px; }

  .carousel-section { padding-top: 8px; }
  .carousel-heading { margin-bottom: 14px; }
  .carousel-heading h3 { font-size: 1.85rem; }
  .carousel-heading p { font-size: .92rem; }

  .carousel-box { padding: 8px; }

  .carousel-slide img {
    height: 240px;
    border-radius: 18px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .carousel-dots {
    gap: 7px;
    margin-top: 12px;
  }

  .carousel-dot { width: 8px; height: 8px; }
  .carousel-dot.is-active { width: 20px; }

  .section { padding: 18px 0; }

  .pill {
    width: 100%;
    min-height: 40px;
    font-size: .74rem;
  }

  .section-heading { margin-bottom: 18px; }

  .section-heading h2,
  .journey-copy h2,
  .investment h2 {
    font-size: 1.9rem;
  }

  .section-heading p,
  .journey-copy p {
    font-size: .93rem;
  }

  .card,
  .journey-wrap,
  .investment,
  .closing {
    padding: 20px 15px;
  }

  .card h3,
  .step h3 {
    font-size: .96rem;
  }

  .clean li { font-size: .93rem; }

  .step {
    padding: 13px;
    border-radius: 16px;
  }

  .num {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: .82rem;
  }

  .step p { font-size: .87rem; }

  .price { font-size: 2.2rem; }
  .sub { font-size: .92rem; }

  .closing .script { font-size: 1.65rem; }
  .closing .sub2 { font-size: .93rem; }
  .closing h2 { font-size: 2rem; }

  .fab-nav {
    bottom: 14px;
    width: 96px;
    height: 96px;
  }

  .logo-fab {
    width: 84px;
    height: 84px;
  }

  .logo-fab img {
    width: 68px;
    height: 68px;
  }

  .fab-item {
    min-width: 84px;
    min-height: 38px;
    padding: 0 12px;
    font-size: .74rem;
  }

  .fab-nav.is-open .fab-item:nth-child(1) { transform: translate(-50%, -50%) translate(-94px, -80px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(2) { transform: translate(-50%, -50%) translate(-48px, -124px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(3) { transform: translate(-50%, -50%) translate(0, -142px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(4) { transform: translate(-50%, -50%) translate(48px, -124px) scale(1); }
  .fab-nav.is-open .fab-item:nth-child(5) { transform: translate(-50%, -50%) translate(94px, -80px) scale(1); }

  .fab-nav.is-open .fab-item:nth-child(1):hover { transform: translate(-50%, -50%) translate(-94px, -80px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(2):hover { transform: translate(-50%, -50%) translate(-48px, -124px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(3):hover { transform: translate(-50%, -50%) translate(0, -142px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(4):hover { transform: translate(-50%, -50%) translate(48px, -124px) scale(1.02); }
  .fab-nav.is-open .fab-item:nth-child(5):hover { transform: translate(-50%, -50%) translate(94px, -80px) scale(1.02); }

  .wa {
    right: 10px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 13px;
    font-size: .8rem;
  }

  .intro-logo-wrap {
    width: 84px;
    height: 84px;
  }

  .intro-logo-wrap img {
    width: 62px;
    height: 62px;
  }

  .intro-title {
    font-size: 2rem;
  }
}