/* ─── Design token fallbacks — overridden by layout <style> ── */
:root {
  --lp-primary:         #154212;
  --lp-secondary:       #79564b;
  --lp-surface:         #faf9f5;
  --lp-surface-variant: #e8e7e3;
  --lp-on-surface:      #1a1c1a;
  --lp-outline:         #8a8a7e;
  --lp-font-display:    "Newsreader", Georgia, serif;
  --lp-font-body:       "Manrope", system-ui, sans-serif;
  --lp-font-label:      "Manrope", system-ui, sans-serif;
  --lp-radius:          12px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Utilities ─────────────────────────────────────────── */
/* .hidden is toggled by the Stimulus video-player controller */
.hidden      { display: none; }
.glass-panel { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* ─── Hero corner shadows (used by hero_component) ──────── */
.lp-hero-corners {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 0% 0%,    rgba(0,0,0,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 70% 70% at 100% 100%, rgba(0,0,0,0.5) 0%, transparent 100%);
  transform-origin: center;
  animation:
    lp-burst   4s  cubic-bezier(0.16, 1, 0.3, 1) forwards,
    lp-breathe 8s  ease-in-out 8s infinite;
}
@keyframes lp-burst   { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes lp-breathe { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* ─── Section wrapper utilities ─────────────────────────── */
/* Backgrounds */
.lp-bg-surface  { background: var(--lp-surface); }
.lp-bg-variant  { background: var(--lp-surface-variant); }

/* Paddings */
.lp-pad-default { padding: 96px 32px; }      /* default: py-24 px-8 */
.lp-pad-section { padding: 96px 24px; }      /* FAQ:     py-24 px-6 */
.lp-pad-reviews { padding: 96px 32px 48px; } /* reviews: pt-24 pb-12 px-8 */

/* Max-widths (all include centering) */
.lp-inner-2xl    { max-width: 1536px; margin: 0 auto; } /* default: max-w-screen-2xl */
.lp-inner-narrow { max-width: 48rem;  margin: 0 auto; } /* FAQ:     max-w-3xl */
.lp-inner-md     { max-width: 768px;  margin: 0 auto; } /* story:   max-w-screen-md */

/* Wrapper structure */
.lp-section-wrap  { position: relative; overflow: hidden; }
.lp-section-inner { position: relative; z-index: 10; }
.lp-theme-shapes  { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

/* ─── Nav ──────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: color-mix(in srgb, var(--lp-surface) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--lp-outline) 10%, transparent);
}
.lp-nav__inner {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 32px; max-width: 1536px; margin: 0 auto;
}
.lp-nav__brand { display: flex; align-items: center; gap: 12px; }
.lp-nav__logo  { height: 44px; width: auto; object-fit: contain; }
.lp-nav__name  { font-family: var(--lp-font-display); font-size: 20px; color: var(--lp-primary); letter-spacing: -0.025em; }
.lp-nav__icon  { color: var(--lp-primary); }
.lp-nav__links { display: none; align-items: center; gap: 40px; }
@media (min-width: 768px) { .lp-nav__links { display: flex; } }
.lp-nav__link  { color: var(--lp-secondary); font-family: var(--lp-font-body); text-decoration: none; transition: color 0.2s; }
.lp-nav__link:hover { color: var(--lp-primary); }
.lp-nav__link--active { color: var(--lp-primary); font-weight: 600; border-bottom: 2px solid var(--lp-primary); padding-bottom: 4px; }
.lp-nav__cta {
  background: var(--lp-primary); color: #fff;
  padding: 10px 24px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 500; font-size: 16px;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--lp-primary) 20%, transparent);
}
.lp-nav__cta:hover  { filter: brightness(1.1); }
.lp-nav__cta:active { transform: scale(0.95); }

/* ─── Hero ──────────────────────────────────────────────── */
.lp-hero { position: relative; height: 100dvh; display: flex; align-items: flex-end; padding: 0 24px; overflow: hidden; }
@media (min-width: 768px) { .lp-hero { padding: 0 64px; } }

.lp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero__bg img,
.lp-hero__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }

.lp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1));
}
.lp-hero__content { position: relative; z-index: 10; width: 100%; max-width: 32rem; padding-bottom: 40px; }

.lp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding: 4px 12px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px); color: rgba(255,255,255,0.9);
  font-family: var(--lp-font-label); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.22em;
}
.lp-hero__heading {
  font-family: var(--lp-font-display); font-size: 36px; color: #fff;
  line-height: 1.12; margin-bottom: 16px;
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)) drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}
@media (min-width: 768px) { .lp-hero__heading { font-size: 48px; } }
.lp-hero__sub {
  color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.625;
  margin-bottom: 28px; max-width: 24rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}
.lp-hero__ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.lp-hero__cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--lp-primary); color: #fff;
  padding: 14px 24px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer;
  box-shadow: 0 20px 25px -5px color-mix(in srgb, var(--lp-primary) 30%, transparent),
              0 8px 10px -6px color-mix(in srgb, var(--lp-primary) 30%, transparent);
  transition: all 0.3s;
}
.lp-hero__cta-primary:hover  { filter: brightness(1.1); }
.lp-hero__cta-primary:active { transform: scale(0.98); }
.lp-hero__cta-icon           { font-size: 16px; line-height: 1; }

.lp-hero__cta-ghost {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  padding: 14px 24px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 500; font-size: 14px;
  text-decoration: none; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.lp-hero__cta-ghost:hover  { background: rgba(255,255,255,0.18); }
.lp-hero__cta-ghost:active { transform: scale(0.98); }

.lp-hero__social-proof { display: flex; align-items: center; gap: 12px; }
.lp-hero__avatars      { display: flex; }
.lp-hero__avatars > * + * { margin-left: -8px; }
.lp-hero__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9px; font-weight: 700; flex-shrink: 0;
}
.lp-hero__stars        { display: flex; align-items: center; gap: 2px; margin-bottom: 1px; }
.lp-hero__star         { color: rgba(253,224,71,0.85); font-size: 12px; line-height: 1; }
.lp-hero__rating       { color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600; margin-left: 4px; }
.lp-hero__review-count { color: rgba(255,255,255,0.6); font-size: 10px; line-height: 1; }

/* ─── FAQ ───────────────────────────────────────────────── */
.lp-faq__header  { text-align: center; margin-bottom: 64px; }
.lp-faq__eyebrow {
  display: block; color: var(--lp-primary);
  font-family: var(--lp-font-label); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px;
}
.lp-faq__title {
  font-family: var(--lp-font-display); font-size: 36px;
  color: var(--lp-primary); margin-bottom: 16px; line-height: 1.25;
}
@media (min-width: 768px) { .lp-faq__title { font-size: 48px; } }
.lp-faq__divider {
  width: 48px; height: 4px; border: none;
  background: color-mix(in srgb, var(--lp-primary) 20%, transparent);
  margin: 0 auto; border-radius: 9999px;
}
.lp-faq__list { display: flex; flex-direction: column; gap: 16px; }
.lp-faq__item {
  border: 1px solid color-mix(in srgb, var(--lp-outline) 15%, transparent);
  border-radius: 16px; overflow: hidden; transition: border-color 0.3s;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.lp-faq__item:hover { border-color: color-mix(in srgb, var(--lp-primary) 30%, transparent); }
.lp-faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 24px; text-align: left;
  background: none; border: none; cursor: pointer;
}
.lp-faq__question-text {
  font-family: var(--lp-font-body); font-weight: 600;
  color: var(--lp-on-surface); padding-right: 32px; transition: color 0.2s;
}
.lp-faq__item:hover .lp-faq__question-text { color: var(--lp-primary); }
.lp-faq__icon          { color: var(--lp-outline); transition: transform 0.3s; flex-shrink: 0; }
.lp-faq__icon--open    { transform: rotate(180deg); color: var(--lp-primary); }
.lp-faq__answer-wrap   { position: relative; overflow: hidden; transition: max-height 0.5s; max-height: 0; }
.lp-faq__answer        { padding: 0 24px 24px; color: var(--lp-secondary); font-family: var(--lp-font-body); line-height: 1.625; font-size: 14px; }
.lp-faq__answer-inner  { padding-top: 8px; border-top: 1px solid color-mix(in srgb, var(--lp-outline) 5%, transparent); }

/* ─── Story ─────────────────────────────────────────────── */
.lp-story          { text-align: center; }
.lp-story__eyebrow {
  display: block; color: var(--lp-primary);
  font-family: var(--lp-font-label); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px;
}
.lp-story__heading { font-family: var(--lp-font-display); font-size: 48px; color: var(--lp-primary); margin-bottom: 16px; line-height: 1.25; }
.lp-story__sub     { color: var(--lp-secondary); font-family: var(--lp-font-body); font-size: 18px; margin-bottom: 32px; line-height: 1.625; }
.lp-story__divider { width: 64px; height: 1px; border: none; background: color-mix(in srgb, var(--lp-primary) 25%, transparent); margin: 0 auto 32px; }
.lp-story__body    { color: var(--lp-on-surface); font-family: var(--lp-font-body); line-height: 2; }

/* ─── Reviews ───────────────────────────────────────────── */
.lp-reviews__header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 32px; }
@media (min-width: 768px) { .lp-reviews__header { flex-direction: row; } }
.lp-reviews__header-text { max-width: 36rem; }
.lp-reviews__heading { font-family: var(--lp-font-display); font-size: 36px; color: var(--lp-primary); margin-bottom: 16px; line-height: 1.375; }
.lp-reviews__sub     { color: var(--lp-secondary); line-height: 1.625; }
.lp-reviews__rating  {
  display: flex; align-items: center; gap: 8px;
  color: var(--lp-primary); font-weight: 600;
  font-family: var(--lp-font-body); font-size: 14px; flex-shrink: 0;
}
.lp-reviews__rating-icon { font-size: 18px; }
.lp-reviews__scroll {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.lp-reviews__scroll::-webkit-scrollbar { display: none; }
.lp-review-card {
  position: relative; flex-shrink: 0; width: 320px;
  scroll-snap-align: start; overflow: hidden; border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8),
              0 10px 15px -3px color-mix(in srgb, var(--lp-primary) 10%, transparent),
              0 4px 6px -4px color-mix(in srgb, var(--lp-primary) 10%, transparent);
}
.lp-review-card__orb {
  position: absolute; top: -40px; right: -40px;
  width: 112px; height: 112px; border-radius: 50%; pointer-events: none;
  background: color-mix(in srgb, var(--lp-primary) 5%, transparent); filter: blur(24px);
}
.lp-review-card__logo  { display: flex; justify-content: flex-end; position: relative; z-index: 10; }
.lp-review-card__stars { display: flex; gap: 2px; }
.lp-review-card__star        { font-size: 16px; line-height: 1; color: #facc15; }
.lp-review-card__star--empty { color: var(--lp-outline); }
.lp-review-card__body {
  color: var(--lp-on-surface); font-size: 14px; line-height: 1.625; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-review-card__author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 4px; border-top: 1px solid color-mix(in srgb, var(--lp-primary) 8%, transparent); margin-top: auto;
}
.lp-review-card__avatar          { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lp-review-card__avatar-initials {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
}
.lp-review-card__author-name { font-size: 14px; font-weight: 600; color: var(--lp-on-surface); }

/* ─── Services section ──────────────────────────────────── */
.lp-services-section__header  { text-align: center; margin-bottom: 64px; }
.lp-services-section__eyebrow {
  display: block; color: var(--lp-primary); font-family: var(--lp-font-label);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px;
}
.lp-services-section__heading { font-family: var(--lp-font-display); font-size: 48px; color: var(--lp-primary); margin-bottom: 24px; line-height: 1.25; }
.lp-services-section__sub     { color: var(--lp-secondary); line-height: 1.625; margin-bottom: 24px; }
.lp-services-section__divider { width: 64px; height: 1px; border: none; background: color-mix(in srgb, var(--lp-primary) 25%, transparent); margin: 0 auto; }
.lp-services-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px)  { .lp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Service card ──────────────────────────────────────── */
.lp-service-card {
  display: flex; flex-direction: column;
  background: var(--lp-surface); border-radius: 16px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--lp-outline) 10%, transparent);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s;
}
.lp-service-card:hover {
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--lp-primary) 8%, transparent),
              0 4px 6px -4px color-mix(in srgb, var(--lp-primary) 8%, transparent);
}
.lp-service-card__image   { position: relative; height: 288px; overflow: hidden; }
.lp-service-card__img     { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s; }
.lp-service-card:hover .lp-service-card__img { transform: scale(1.05); }
.lp-service-card__placeholder {
  width: 100%; height: 100%; background: var(--lp-surface-variant);
  display: flex; align-items: center; justify-content: center;
}
.lp-service-card__placeholder-icon { color: var(--lp-outline); font-size: 36px; }
.lp-service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--lp-primary) 50%, transparent), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.lp-service-card:hover .lp-service-card__overlay { opacity: 1; }
.lp-service-card__body    { display: flex; flex-direction: column; flex: 1; }
.lp-service-card__text    { padding: 32px 32px 24px; }
.lp-service-card__heading { font-family: var(--lp-font-display); font-size: 24px; color: var(--lp-primary); margin-bottom: 12px; line-height: 1.375; }
.lp-service-card__desc    {
  color: var(--lp-secondary); line-height: 1.625;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-service-card__actions { display: flex; flex-direction: column; gap: 12px; padding: 0 16px 24px; margin-top: auto; }

/* shared by service card and video card */
.lp-btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px; border-radius: 9999px;
  color: var(--lp-primary); font-family: var(--lp-font-body); font-weight: 500; font-size: 14px;
  text-decoration: none; border: 1px solid color-mix(in srgb, var(--lp-primary) 20%, transparent);
  background: transparent; cursor: pointer; transition: background-color 0.2s;
}
.lp-btn-outline:hover { background: color-mix(in srgb, var(--lp-primary) 5%, transparent); }
.lp-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; color: #fff; padding: 14px 20px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 600; font-size: 14px;
  text-decoration: none; transition: opacity 0.2s;
}
.lp-btn-wa:hover  { opacity: 0.9; }
.lp-btn-wa:active { transform: scale(0.98); }

/* ─── Video section ──────────────────────────────────────── */
.lp-video-section       { padding: 24px 32px; background: var(--lp-surface-variant); }
.lp-video-section__inner { max-width: 56rem; margin: 0 auto; }
.lp-video-card {
  background: var(--lp-surface); border-radius: 16px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--lp-outline) 10%, transparent);
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--lp-primary) 5%, transparent),
              0 4px 6px -4px color-mix(in srgb, var(--lp-primary) 5%, transparent);
}
.lp-video-card__header     { padding: 48px 48px 32px; text-align: center; }
.lp-video-card__title      { font-family: var(--lp-font-display); font-size: 24px; color: var(--lp-primary); line-height: 1.375; }
.lp-video-card__media-wrap { padding: 0 24px 8px; }
.lp-video-player {
  position: relative; aspect-ratio: 9 / 16;
  margin: 0 auto; width: 100%; max-width: 320px;
  border-radius: 12px; overflow: hidden;
}
.lp-video-poster          { position: absolute; inset: 0; cursor: pointer; }
.lp-video-poster__img     { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform 0.7s; }
.lp-video-poster:hover .lp-video-poster__img { transform: scale(1.05); }
.lp-video-poster__placeholder {
  width: 100%; height: 100%; background: var(--lp-surface-variant);
  display: flex; align-items: center; justify-content: center;
}
.lp-video-poster__placeholder-icon { font-size: 64px; color: var(--lp-outline); }
.lp-video-poster__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25); transition: background-color 0.2s;
}
.lp-video-poster:hover .lp-video-poster__overlay { background: rgba(0,0,0,0.15); }
.lp-video-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-primary); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.lp-video-play-icon        { font-size: 36px; }
.lp-video-el               { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-video-card__footer     { padding: 48px; }
.lp-video-card__cta-row    { display: flex; flex-direction: column; align-items: center; gap: 32px; }
@media (min-width: 768px) { .lp-video-card__cta-row { flex-direction: row; } }
.lp-video-card__sub        { color: var(--lp-secondary); line-height: 1.625; flex: 1; }
.lp-video-card__ctas       { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }

/* ─── Footer ────────────────────────────────────────────── */
.lp-footer {
  position: relative; overflow: hidden;
  background: var(--lp-surface);
  border-top: 1px solid color-mix(in srgb, var(--lp-outline) 20%, transparent);
}
.lp-footer__grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .lp-footer__grid { grid-template-columns: repeat(2, 1fr); } }

.lp-footer__map { position: relative; min-height: 360px; overflow: hidden; order: 1; }
@media (min-width: 1024px) { .lp-footer__map { min-height: 440px; order: 0; } }
.lp-footer__map-iframe { width: 100%; height: 100%; border: 0; display: block; }
.lp-footer__map-placeholder {
  width: 100%; min-height: 360px; background: var(--lp-surface-variant);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.lp-footer__map-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--lp-surface);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.lp-footer__map-label {
  font-family: var(--lp-font-body); font-size: 12px; color: var(--lp-outline);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.lp-footer__contact {
  padding: 56px 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 48px;
}
.lp-footer__brand      { display: flex; flex-direction: column; align-items: center; text-align: center; }
.lp-footer__logo       { height: 80px; width: auto; object-fit: contain; margin-bottom: 20px; }
.lp-footer__brand-name { display: block; font-family: var(--lp-font-display); font-size: 30px; color: var(--lp-primary); margin-bottom: 20px; }
.lp-footer__brand-desc { color: var(--lp-secondary); font-size: 14px; line-height: 1.625; max-width: 20rem; }
.lp-footer__phone-cta  { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.lp-footer__phone-label  { font-family: var(--lp-font-label); font-size: 12px; color: var(--lp-outline); text-transform: uppercase; letter-spacing: 0.2em; }
.lp-footer__phone-number { font-family: var(--lp-font-display); font-size: 24px; color: var(--lp-on-surface); font-weight: 500; letter-spacing: -0.025em; }
.lp-footer__cta-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lp-primary); color: #fff;
  padding: 14px 32px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--lp-primary) 25%, transparent),
              0 4px 6px -4px color-mix(in srgb, var(--lp-primary) 25%, transparent);
}
.lp-footer__cta-call:hover  { filter: brightness(1.1); transform: translateY(-2px); }
.lp-footer__cta-call:active { transform: scale(0.98); }
.lp-footer__cta-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--lp-on-surface); color: var(--lp-surface);
  padding: 14px 28px; border-radius: 9999px;
  font-family: var(--lp-font-body); font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
}
.lp-footer__cta-wa:hover  { opacity: 0.85; transform: translateY(-2px); }
.lp-footer__cta-wa:active { transform: scale(0.98); }
.lp-footer__social      { display: flex; align-items: center; justify-content: center; gap: 20px; }
.lp-footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--lp-outline) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-secondary); text-decoration: none; transition: all 0.2s;
}
.lp-footer__social-link:hover {
  color: var(--lp-primary);
  border-color: color-mix(in srgb, var(--lp-primary) 40%, transparent);
}
.lp-footer__bar { position: relative; z-index: 10; padding: 20px 40px; border-top: 1px solid color-mix(in srgb, var(--lp-outline) 10%, transparent); }
.lp-footer__copyright { font-family: var(--lp-font-body); font-size: 12px; color: var(--lp-outline); text-align: center; }
