/* ============================================================
   MINAMI SEO Landing Page — Pastel Coral + Mint design
   Standalone styles (main.css is dequeued on this page)
   ============================================================ */

/* --- Google Font loaded via wp_enqueue_style --- */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Restore admin bar defaults (when logged-in admin views LP) */
#wpadminbar,
#wpadminbar * {
  box-sizing: content-box;
  margin: revert;
  padding: revert;
}

:root {
  --lp-coral: #FF8A7A;
  --lp-coral-light: #FFF0EE;
  --lp-coral-lighter: #FFF8F6;
  --lp-coral-dark: #E8706A;
  --lp-mint: #6DBFA0;
  --lp-mint-light: #EEF8F3;
  --lp-mint-lighter: #F5FBF8;
  --lp-mint-dark: #4DA882;
  --lp-bg: #FFFAF8;
  --lp-white: #FFFFFF;
  --lp-text: #3D3D4E;
  --lp-text-light: #7A7A8C;
  --lp-text-lighter: #A0A0B0;
  --lp-shadow-sm: 0 2px 8px rgba(61,61,78,0.06);
  --lp-shadow: 0 4px 20px rgba(61,61,78,0.07);
  --lp-shadow-lg: 0 12px 40px rgba(61,61,78,0.10);
  --lp-radius: 20px;
  --lp-radius-lg: 28px;
  --lp-radius-sm: 12px;
  --lp-radius-xs: 8px;
  --lp-font: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html {
  -webkit-text-size-adjust: 100%;
}

body.page-lp {
  margin: 0;
  font-family: var(--lp-font);
  font-weight: 400;
  color: var(--lp-text);
  background: var(--lp-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Override theme body pseudo-elements */
body.page-lp::before,
body.page-lp::after {
  display: none !important;
}

/* Hide theme header/footer/main if somehow loaded */
body.page-lp .site-header,
body.page-lp .site-footer,
body.page-lp .skip-link {
  display: none !important;
}

body.page-lp .site-main {
  padding: 0 !important;
  margin: 0 !important;
}

body.page-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-lp a {
  color: inherit;
  text-decoration: none;
  transition: color var(--lp-transition);
}

/* --- Utility --- */
.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--lp-coral);
  outline-offset: 2px;
}

/* --- Skip Link --- */
.lp-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--lp-coral);
  color: var(--lp-white);
  border-radius: var(--lp-radius-xs);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.lp-skip-link:focus {
  top: 1rem;
}

/* --- Backdrop (mobile menu overlay) --- */
.lp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lp-transition), visibility var(--lp-transition);
}

.lp-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- Scroll lock when mobile menu is open --- */
body.page-lp.lp-menu-open {
  overflow: hidden;
}

/* ============================================================
   Header
   ============================================================ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 138, 122, 0.1);
  transition: box-shadow var(--lp-transition);
}

.lp-header--scrolled {
  box-shadow: var(--lp-shadow-sm);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.lp-header__brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-coral);
  letter-spacing: 0.02em;
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-header__nav a:not(.lp-btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-text-light);
  position: relative;
  padding: 4px 0;
}

.lp-header__nav a:not(.lp-btn):hover {
  color: var(--lp-coral);
}

.lp-header__nav a:not(.lp-btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lp-coral);
  border-radius: 1px;
  transition: width var(--lp-transition);
}

.lp-header__nav a:not(.lp-btn):hover::after {
  width: 100%;
}

/* Hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.lp-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform var(--lp-transition), opacity var(--lp-transition);
}

.lp-hamburger[aria-expanded="true"] .lp-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-hamburger[aria-expanded="true"] .lp-hamburger__line:nth-child(2) {
  opacity: 0;
}
.lp-hamburger[aria-expanded="true"] .lp-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Buttons
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lp-font);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--lp-transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-coral) 0%, var(--lp-coral-dark) 100%);
  color: var(--lp-white);
  padding: 14px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255, 138, 122, 0.35);
}

.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 122, 0.45);
}

.lp-btn--primary:active {
  transform: translateY(0);
}

.lp-btn--outline {
  background: var(--lp-white);
  color: var(--lp-coral);
  padding: 14px 32px;
  font-size: 0.95rem;
  border: 2px solid var(--lp-coral);
}

.lp-btn--outline:hover {
  background: var(--lp-coral-light);
}

.lp-btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.lp-btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.lp-btn--block {
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */
.lp-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(170deg, var(--lp-bg) 0%, var(--lp-coral-lighter) 40%, var(--lp-mint-lighter) 100%);
  overflow: hidden;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-hero__badge {
  display: inline-block;
  background: var(--lp-coral-light);
  color: var(--lp-coral-dark);
  padding: 6px 16px 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid var(--lp-coral);
}

.lp-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-hero__accent {
  color: var(--lp-coral);
  position: relative;
}

.lp-hero__accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 138, 122, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.lp-hero__lead {
  font-size: 1.1rem;
  color: var(--lp-text-light);
  line-height: 1.9;
  margin-bottom: 28px;
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.lp-hero__note {
  font-size: 0.8rem;
  color: var(--lp-text-lighter);
}

.lp-hero__subnote {
  width: 100%;
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--lp-text-light);
}

.lp-hero__subnote strong {
  color: var(--lp-text);
}

.lp-hero__stats {
  display: flex;
  gap: 32px;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-mint-dark);
}

.lp-stat__label {
  font-size: 0.8rem;
  color: var(--lp-text-lighter);
}

/* Hero Visual */
.lp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,138,122,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.lp-hero__character {
  position: relative;
  z-index: 2;
  animation: lp-float 4s ease-in-out infinite;
}

.lp-hero__character img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  background: var(--lp-white);
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(61,61,78,0.10);
  border: 4px solid var(--lp-coral-light);
}

.lp-hero__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--lp-coral-light) 0%, var(--lp-mint-light) 100%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 1;
  animation: lp-morph 8s ease-in-out infinite;
}

/* Hero Wave */
.lp-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--lp-white);
  line-height: 0;
}

.lp-hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================================
   Sections Common
   ============================================================ */
.lp-section {
  padding: 80px 0;
}

.lp-section__header {
  text-align: center;
  margin-bottom: 52px;
}

.lp-section__character--sm {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.lp-section__character--sm img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: var(--lp-white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(61,61,78,0.08);
  border: 3px solid var(--lp-coral-light);
}

.lp-section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lp-section__lead {
  font-size: 1rem;
  color: var(--lp-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Global: scroll offset for fixed header --- */
.lp-pain,
.lp-features,
.lp-steps,
.lp-pricing,
.lp-faq,
.lp-final-cta {
  scroll-margin-top: 80px;
}

/* --- Global: subtle card hover brightness --- */
.lp-pain__card:hover,
.lp-step:hover {
  filter: brightness(1.02);
}

/* ============================================================
   Pain Points
   ============================================================ */
.lp-pain {
  background: var(--lp-white);
}

.lp-pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-pain__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--lp-coral-lighter);
  border: 1px solid rgba(255, 138, 122, 0.12);
  border-left: 4px solid var(--lp-coral);
  border-radius: var(--lp-radius-sm);
  padding: 28px;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-pain__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
}

.lp-pain__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-white);
  border-radius: 12px;
  color: var(--lp-coral);
}

.lp-pain__text {
  font-size: 0.95rem;
  color: var(--lp-text);
  line-height: 1.7;
}

/* ============================================================
   Solution Arrow
   ============================================================ */
.lp-arrow {
  background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-mint-lighter) 100%);
  padding: 32px 0 48px;
  position: relative;
}

.lp-arrow__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lp-arrow__character {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--lp-white);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(61,61,78,0.08), 0 0 20px rgba(255,138,122,0.15);
  border: 3px solid var(--lp-mint-light);
  animation: lp-bounce 2s ease-in-out infinite, lp-glow-pulse 3s ease-in-out infinite;
}

.lp-arrow__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-coral);
  letter-spacing: -0.02em;
}

/* Decorative downward chevron after arrow section */
.lp-arrow__inner::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--lp-coral);
  border-bottom: 3px solid var(--lp-coral);
  transform: rotate(45deg);
  opacity: 0.5;
  margin-left: 8px;
  flex-shrink: 0;
}

/* ============================================================
   Features
   ============================================================ */
.lp-features {
  background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-mint-lighter) 100%);
}

.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid rgba(109, 191, 160, 0.1);
  border-top: 3px solid transparent;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-top-color var(--lp-transition), filter var(--lp-transition);
}

.lp-feature-card:nth-child(odd) {
  border-left: 3px solid rgba(255, 138, 122, 0.15);
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
  border-top-color: var(--lp-coral);
  filter: brightness(1.02);
}

.lp-feature-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 20px;
}

.lp-feature-card__icon--coral {
  background: var(--lp-coral-light);
  color: var(--lp-coral);
}

.lp-feature-card__icon--mint {
  background: var(--lp-mint-light);
  color: var(--lp-mint-dark);
}

.lp-feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-feature-card__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--lp-coral);
  border-radius: 10px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.lp-feature-card__text {
  font-size: 0.9rem;
  color: var(--lp-text-light);
  line-height: 1.75;
}

/* ============================================================
   Steps
   ============================================================ */
.lp-steps {
  background: var(--lp-mint-lighter);
}

.lp-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.lp-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  box-shadow: var(--lp-shadow-sm);
  transition: transform var(--lp-transition);
  position: relative;
}

.lp-step:hover {
  transform: translateY(-4px);
}

.lp-step__number {
  display: inline-block;
  background: linear-gradient(135deg, var(--lp-coral) 0%, var(--lp-coral-dark) 100%);
  color: var(--lp-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.lp-step__character {
  margin-bottom: 16px;
}

.lp-step__character img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto;
  background: var(--lp-white);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(61,61,78,0.08);
  border: 3px solid var(--lp-coral-light);
}

.lp-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lp-text);
}

.lp-step__text {
  font-size: 0.88rem;
  color: var(--lp-text-light);
  line-height: 1.7;
}

/* Hide SVG connectors; use CSS-only dashed connectors instead */
.lp-step__connector {
  display: none;
}

/* CSS-only dashed connector line between step cards (desktop) */
.lp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  width: 32px;
  height: 0;
  border-top: 2px dashed var(--lp-coral);
  opacity: 0.45;
}

.lp-steps__cta {
  text-align: center;
  margin-top: 48px;
}

.lp-steps__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-steps__cta-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--lp-text-lighter);
}

/* ============================================================
   Pricing
   ============================================================ */
.lp-pricing {
  background: var(--lp-white);
}

.lp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-pricing-card {
  position: relative;
  background: var(--lp-white);
  border: 2px solid var(--lp-mint-light);
  border-radius: var(--lp-radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition);
  overflow: hidden;
}

/* Default top accent bar (all cards) */
.lp-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lp-mint);
  border-radius: var(--lp-radius) var(--lp-radius) 0 0;
}

.lp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
}

.lp-pricing-card--featured {
  border-color: var(--lp-coral);
  box-shadow: var(--lp-shadow-lg);
  background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-coral-lighter) 100%);
  transform: scale(1.03);
}

/* Featured (Business) plan - coral gradient top accent bar */
.lp-pricing-card--featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--lp-coral) 0%, var(--lp-coral-dark) 100%);
}

.lp-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.lp-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-coral) 0%, var(--lp-coral-dark) 100%);
  color: var(--lp-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.lp-pricing-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--lp-text);
}

.lp-pricing-card__price {
  margin-bottom: 8px;
}

.lp-pricing-card__amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1;
}

.lp-pricing-card__period {
  font-size: 0.9rem;
  color: var(--lp-text-light);
}

.lp-pricing-card__note {
  font-size: 0.82rem;
  color: var(--lp-coral);
  font-weight: 500;
  margin-bottom: 20px;
}

.lp-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.lp-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--lp-text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.lp-pricing-card__features li:last-child {
  border-bottom: none;
}

.lp-pricing-card__features svg {
  flex-shrink: 0;
  color: var(--lp-mint);
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  background: var(--lp-mint-lighter);
}

.lp-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq__item {
  background: var(--lp-white);
  border-radius: var(--lp-radius-sm);
  border: 1px solid rgba(109, 191, 160, 0.12);
  border-left: 3px solid transparent;
  overflow: hidden;
  transition: box-shadow var(--lp-transition), border-left-color var(--lp-transition);
}

.lp-faq__item[open] {
  box-shadow: var(--lp-shadow-sm);
  border-left-color: var(--lp-coral);
}

.lp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lp-faq__question::-webkit-details-marker {
  display: none;
}

.lp-faq__question::marker {
  content: "";
}

.lp-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  background: var(--lp-coral-light);
  transition: transform var(--lp-transition), background var(--lp-transition);
}

.lp-faq__icon::before,
.lp-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--lp-coral);
  border-radius: 1px;
}

.lp-faq__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.lp-faq__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform var(--lp-transition);
}

.lp-faq__item[open] .lp-faq__icon {
  background: var(--lp-coral);
}

.lp-faq__item[open] .lp-faq__icon::before,
.lp-faq__item[open] .lp-faq__icon::after {
  background: var(--lp-white);
}

.lp-faq__item[open] .lp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp-faq__answer {
  padding: 0 28px 22px;
}

.lp-faq__answer p {
  font-size: 0.9rem;
  color: var(--lp-text-light);
  line-height: 1.8;
}

/* ============================================================
   Final CTA
   ============================================================ */
.lp-final-cta {
  background: linear-gradient(170deg, var(--lp-coral-lighter) 0%, var(--lp-mint-lighter) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative dot pattern behind the CTA area */
.lp-final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,138,122,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.lp-final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-final-cta__character {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.lp-final-cta__character img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: var(--lp-white);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 6px 24px rgba(61,61,78,0.10);
  border: 4px solid var(--lp-coral-light);
  animation: lp-float 4s ease-in-out infinite;
}

.lp-final-cta__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lp-final-cta__lead {
  font-size: 1rem;
  color: var(--lp-text-light);
  margin-bottom: 32px;
}

.lp-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Secondary note below CTA button (e.g. "no credit card required") */
.lp-final-cta__note {
  font-size: 0.82rem;
  color: var(--lp-text-lighter);
  margin-top: 16px;
}

/* ============================================================
   Footer
   ============================================================ */
.lp-footer {
  background: var(--lp-text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 36px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--lp-coral), var(--lp-mint), var(--lp-coral)) 1;
}

.lp-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.lp-footer__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-white);
  display: block;
  margin-bottom: 4px;
}

.lp-footer__blurb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.lp-footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--lp-transition);
}

.lp-footer__links a:hover {
  color: var(--lp-white);
}

.lp-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes lp-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes lp-morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  25% { border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%; }
  50% { border-radius: 40% 50% 60% 50% / 60% 40% 50% 50%; }
  75% { border-radius: 50% 40% 50% 60% / 50% 50% 40% 60%; }
}

@keyframes lp-glow-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(61,61,78,0.08), 0 0 20px rgba(255,138,122,0.15); }
  50% { box-shadow: 0 4px 12px rgba(61,61,78,0.08), 0 0 32px rgba(255,138,122,0.28); }
}

/* Reduced motion: disable animations */
@media (prefers-reduced-motion: reduce) {
  .lp-hero__character,
  .lp-arrow__character,
  .lp-final-cta__character img,
  .lp-hero__blob {
    animation: none !important;
  }
  .lp-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__title {
    font-size: 2rem;
  }

  .lp-hero__actions {
    justify-content: center;
  }

  .lp-hero__subnote {
    text-align: center;
  }

  .lp-hero__stats {
    justify-content: center;
  }

  .lp-hero__visual {
    order: -1;
  }

  .lp-hero__character img {
    width: 220px;
    height: 220px;
  }

  .lp-hero__blob {
    width: 260px;
    height: 260px;
  }

  .lp-pain__grid {
    grid-template-columns: 1fr;
  }

  .lp-features__grid {
    grid-template-columns: 1fr;
  }

  .lp-steps__grid {
    flex-direction: column;
    align-items: center;
  }

  .lp-step {
    max-width: 360px;
    width: 100%;
  }

  .lp-steps__cta-actions .lp-btn,
  .lp-final-cta__actions .lp-btn {
    width: 100%;
    max-width: 360px;
  }

  /* SVG connectors already hidden globally; hide CSS connectors on mobile too */
  .lp-step:not(:last-child)::after {
    display: none;
  }

  .lp-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
  }

  .lp-section__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .lp-hamburger {
    display: flex;
  }

  .lp-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    background: var(--lp-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform var(--lp-transition);
    z-index: 105;
  }

  .lp-header__nav.is-open {
    transform: translateX(0);
  }

  .lp-header__nav a:not(.lp-btn) {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .lp-header__nav a:not(.lp-btn)::after {
    display: none;
  }

  .lp-header__nav .lp-btn {
    margin-top: 16px;
    width: 100%;
  }

  .lp-hero {
    padding: 100px 0 60px;
  }

  .lp-hero__title {
    font-size: 1.65rem;
  }

  .lp-hero__lead {
    font-size: 0.95rem;
  }

  .lp-section {
    padding: 60px 0;
  }

  .lp-final-cta__title {
    font-size: 1.5rem;
  }

  .lp-arrow__text {
    font-size: 1.05rem;
  }

  /* Ensure hero character stays legible on mobile */
  .lp-hero__character img {
    min-width: 180px;
    min-height: 180px;
  }

  /* Reset featured card scale on mobile to avoid overflow */
  .lp-pricing-card--featured {
    transform: scale(1);
  }

  .lp-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .lp-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .lp-hero__title {
    font-size: 1.4rem;
  }

  .lp-hero__stats {
    flex-direction: column;
    gap: 12px;
  }

  .lp-stat {
    flex-direction: row;
    gap: 8px;
  }

  .lp-hero__character img {
    width: 180px;
    height: 180px;
  }

  .lp-hero__blob {
    width: 220px;
    height: 220px;
  }

  .lp-btn--lg {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .lp-pricing-card {
    padding: 28px 20px;
  }

  .lp-pricing-card__amount {
    font-size: 2.2rem;
  }
}
