/* =============================================
   HEADER
   ============================================= */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-header__logo-icon {
  width: 36px;
  height: 36px;
}
.lp-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.lp-header__logo-main {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}
.lp-header__logo-sub {
  font-size: 10px;
  color: var(--color-muted);
}
.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-header__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}
.lp-header__nav a:hover { color: var(--color-blue); }
.lp-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-header__cta .btn { padding: 10px 20px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-black);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-menu__cta .btn { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.section-hero {
  padding-top: var(--header-h);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.section-hero .container {
  position: relative;
  z-index: 1;
}
.section-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.section-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin-bottom: -120px;
  z-index: 1;
  order: -1;
}
.section-hero__image {
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.section-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0.95) 80%, rgba(255,255,255,1) 100%),
    linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Hero entrance animation */
.section-hero__visual {
  animation: heroFadeIn 0.8s ease-out both;
}
.section-hero__content {
  animation: heroSlideUp 0.7s ease-out 0.3s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.section-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.section-hero__label {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 24px;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(255,196,0,0.25);
}
.section-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-hero__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-muted);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-hero__buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.section-hero__badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.section-hero__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-muted);
}
.hero-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Hero decorations */
.hero-deco-dots {
  position: absolute;
  left: 5%;
  top: 20%;
  display: grid;
  grid-template-columns: repeat(4, 5px);
  gap: 6px;
  z-index: 1;
  animation: pulse-sm 5s ease-in-out infinite;
}
.hero-deco-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-pink);
  opacity: 0.5;
  animation: twinkle 3s ease-in-out infinite;
}
.hero-deco-dots span:nth-child(2n) { animation-delay: 0.3s; }
.hero-deco-dots span:nth-child(3n) { animation-delay: 0.7s; }
.hero-deco-orange {
  position: absolute;
  left: 3%;
  top: 40%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.6;
  z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}
.hero-deco-purple-corner {
  position: absolute;
  right: 5%;
  top: calc(var(--header-h) + 20px);
  width: 70px;
  height: 70px;
  border-right: 3px dotted var(--color-purple);
  border-top: 3px dotted var(--color-purple);
  opacity: 0.35;
  z-index: 1;
  animation: pulse-sm 6s ease-in-out infinite;
}
.hero-deco-orange-ring {
  position: absolute;
  right: 6%;
  bottom: 30%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px dashed var(--color-orange);
  opacity: 0.35;
  z-index: 1;
  animation: spin-slow 20s linear infinite;
}
.hero-deco-blue-ring {
  position: absolute;
  left: 12%;
  bottom: 25%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  opacity: 0.4;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
.hero-deco-small-blue {
  position: absolute;
  right: 12%;
  top: 25%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
  opacity: 0.35;
  z-index: 1;
  animation: float-xy 6s ease-in-out infinite;
}

/* =============================================
   WHY NOW
   ============================================= */
.section-why {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-why__header {
  margin-bottom: 40px;
}
.section-why__header .section-lead {
  max-width: 700px;
}
.section-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.why-card__illust {
  width: 180px;
  height: 140px;
  margin: 0 auto 20px;
}
.why-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 1.5;
}
.why-card__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* =============================================
   SERVICE
   ============================================= */
.section-service {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-service__header {
  margin-bottom: 48px;
}
.section-service__title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.5;
  margin-bottom: 10px;
}
.section-service__lead {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
}
.section-service__body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.service-step {
  text-align: center;
  position: relative;
}
.service-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 55px;
  width: 14px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-orange) 0, var(--color-orange) 4px, transparent 4px, transparent 8px);
}
.service-step__illust {
  width: 130px;
  height: 110px;
  margin: 0 auto 14px;
}
.service-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.5;
  margin-bottom: 6px;
}
.service-step__text {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}
.service-delivery {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
}
.service-delivery__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-blue);
}
.service-delivery__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-delivery__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}
.check-icon { flex-shrink: 0; margin-top: 2px; }
.service-delivery__book {
  width: 160px;
  height: 130px;
  margin: 0 auto 16px;
}
.service-delivery__badge {
  display: block;
  background: var(--color-purple);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  text-align: center;
}

/* =============================================
   USE CASES
   ============================================= */
.section-usecase {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-usecase__header {
  margin-bottom: 48px;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.usecase-card__illust {
  width: 180px;
  height: 140px;
  margin: 0 auto 20px;
}
.usecase-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 1.5;
}
.usecase-card__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* =============================================
   STRENGTHS
   ============================================= */
.section-strength {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-strength__header { margin-bottom: 48px; }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.strength-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.strength-item__illust {
  width: 120px;
  height: 100px;
  margin: 0 auto 18px;
}
.strength-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 1.5;
}
.strength-item__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* =============================================
   PLAN
   ============================================= */
.section-plan {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--color-bg-soft);
  position: relative;
}
.section-plan__header {
  margin-bottom: 40px;
}
.section-plan__header .section-lead {
  margin-bottom: 8px;
}
.section-plan__custom {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
/* Color bar at top */
.plan-card__header {
  padding: 28px 28px 20px;
  position: relative;
}
.plan-card__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}
.plan-card:nth-child(1) .plan-card__header::before { background: var(--color-blue); }
.plan-card:nth-child(2) .plan-card__header::before { background: linear-gradient(90deg, var(--color-yellow), var(--color-orange)); }
.plan-card:nth-child(3) .plan-card__header::before { background: var(--color-purple); }
.plan-card__body {
  padding: 0 28px;
  flex: 1;
}
.plan-card__footer {
  padding: 20px 28px 28px;
  margin-top: auto;
}
/* Featured (Standard) */
.plan-card--featured {
  border: 2px solid var(--color-yellow);
  box-shadow: 0 8px 32px rgba(255, 196, 0, 0.18);
  transform: scale(1.03);
  z-index: 2;
}
.plan-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 196, 0, 0.25);
}
.plan-card--featured .plan-card__header {
  background: linear-gradient(180deg, var(--color-yellow-light) 0%, var(--color-bg) 100%);
}
.plan-card__popular {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--color-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.plan-card__name {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 4px;
}
.plan-card__name-ja {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 0;
}
.plan-card__price-box {
  background: var(--color-bg-soft);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.plan-card--featured .plan-card__price-box {
  background: var(--color-yellow-light);
}
.plan-card__price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.02em;
}
.plan-card__price-tax {
  font-size: 12px;
  color: var(--color-muted);
}
.plan-card__target {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: var(--color-bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--color-border);
}
.plan-card:nth-child(1) .plan-card__target { border-left-color: var(--color-blue); }
.plan-card:nth-child(2) .plan-card__target { border-left-color: var(--color-yellow); }
.plan-card:nth-child(3) .plan-card__target { border-left-color: var(--color-purple); }
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}
.plan-card__feature .check-icon { margin-top: 2px; }
.plan-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  background: var(--color-bg);
  color: var(--color-black);
  border: 2px solid var(--color-black);
}
.plan-card__cta:hover {
  background: var(--color-black);
  color: #fff;
}
.plan-card--featured .plan-card__cta {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 4px 16px rgba(255,196,0,0.3);
}
.plan-card--featured .plan-card__cta:hover {
  background: var(--color-yellow-hover);
  border-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,196,0,0.4);
}

.plan-includes {
  margin-top: 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 36px;
}
.plan-includes__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.plan-includes__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
  padding-right: 28px;
  border-right: 1px solid var(--color-border);
}
.plan-includes__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}
.plan-includes__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-text);
}
.plan-includes__note {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================
   FLOW
   ============================================= */
.section-flow {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-flow__header {
  margin-bottom: 48px;
}
.flow-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.flow-step {
  text-align: center;
}
.flow-step__illust {
  width: 150px;
  height: 120px;
  margin: 0 auto 14px;
}
.flow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.flow-step:nth-child(1) .flow-step__number { background: var(--color-pink); }
.flow-step:nth-child(2) .flow-step__number { background: var(--color-purple); }
.flow-step:nth-child(3) .flow-step__number { background: var(--color-orange); }
.flow-step:nth-child(4) .flow-step__number { background: var(--color-blue); }
.flow-step:nth-child(5) .flow-step__number { background: var(--color-pink); }
.flow-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 1.5;
}
.flow-step__text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.section-faq {
  padding: clamp(56px, 7vw, 100px) 0;
  background: var(--color-bg-soft);
}
.section-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
  line-height: 1.5;
  gap: 14px;
}
.faq-q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}
.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  border-radius: 2px;
}
.faq-toggle::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__answer-inner {
  padding: 0 20px 18px 62px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* =============================================
   CTA
   ============================================= */
.section-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 55%, var(--color-pink) 100%);
  position: relative;
  overflow: hidden;
}
.section-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.section-cta__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
}
.section-cta__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.section-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.section-cta__buttons .btn--primary {
  box-shadow: 0 4px 20px rgba(255,196,0,0.4);
}
.section-cta__buttons .btn--outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.section-cta__buttons .btn--outline:hover {
  background: #fff;
  color: var(--color-black);
}
.section-cta__badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-cta__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.section-cta__sub {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.section-cta__sub-text {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.section-cta__sub-icons {
  display: flex;
  gap: 18px;
}
.section-cta__sub-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

/* CTA decorations */
.cta-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.2);
  animation: spin-slow 30s linear infinite;
}
.cta-deco-circle:nth-child(2) {
  animation: spin-reverse 25s linear infinite;
}
.cta-deco-circle:nth-child(3) {
  animation: spin-slow 35s linear infinite;
}

/* =============================================
   FOOTER
   ============================================= */
.lp-footer {
  background: var(--color-black);
  color: #fff;
  padding: 40px 0 28px;
}
.lp-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-footer__logo-main { font-size: 13px; font-weight: 700; }
.lp-footer__logo-sub { font-size: 10px; color: rgba(255,255,255,0.5); }
.lp-footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.lp-footer__links a:hover { color: #fff; }
.lp-footer__copy {
  width: 100%;
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}


/* =============================================
   ABOUT / REPRESENTATIVE
   ============================================= */
.section-about {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-about__header { margin-bottom: 48px; }
.about-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
}
.about-card__photo {
  display: flex;
  justify-content: center;
}
.about-card__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-orange);
}
.about-card__name {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 8px;
}
.about-card__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 20px;
}
.about-card__text {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 2;
}