/* ── TOKENS ── */
:root {
  --green:        #7fff6a;
  --green-dim:    rgba(127, 255, 106, 0.1);
  --green-border: rgba(127, 255, 106, 0.22);
  --dark:         #0d1114;
  --glass:        rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text:         #f2f3ee;
  --muted:        #a2aaa4;
  --muted-strong: #d6ddd7;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

section,
#main-content {
  scroll-margin-top: 110px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green);
  color: #11150f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(130px); opacity: 0.16;
  animation: drift 20s ease-in-out infinite alternate;
}
.o1 { width: 800px; height: 800px; background: #1a4d2e; top: -250px; left: -250px; }
.o2 { width: 500px; height: 500px; background: #0a3322; top: 45%; right: -150px; animation-delay: -7s; }
.o3 { width: 450px; height: 450px; background: #2d4a0a; bottom: -150px; left: 35%; animation-delay: -14s; }
.o4 { width: 300px; height: 300px; background: #1a3a1a; top: 25%; left: 50%; animation-delay: -4s; }

.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(127, 255, 106, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 255, 106, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 70px) scale(1.12); }
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(13, 17, 20, 0.9);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.36rem;
  letter-spacing: -0.03em;
  color: var(--text); text-decoration: none;
}
.logo-accent { color: var(--green); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a {
  color: var(--muted-strong); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 100px; padding: 3px;
  backdrop-filter: blur(10px);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: 100px;
  border: none; cursor: pointer;
  background: transparent; color: var(--muted);
  transition: all 0.2s;
  text-decoration: none;
}
.lang-btn.active { background: var(--green); color: var(--dark); }
.lang-btn:not(.active):hover { color: var(--text); }

.nav-cta {
  background: var(--green);
  border: 1px solid var(--green);
  color: #11150f;
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.85rem; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
  font-weight: 700;
}
.nav-cta:hover { background: #d7eda0; border-color: #d7eda0; color: #11150f; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ── HERO ── */
.hero {
  min-height: 82vh;
  display: flex; align-items: center;
  padding: 136px 0 72px;
}
.hero-content { max-width: 920px; }
.hero-sequence {
  --hero-progress: 0;
  min-height: auto;
  padding: 0;
}
.hero-sequence-wrap {
  max-width: 1180px;
}
.hero-sequence-track {
  min-height: 220svh;
}
.hero-sequence-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 96px;
}
.hero-beats {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: center;
  min-height: 72vh;
}
.hero-lead {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.beat-two,
.beat-three,
.beat-five {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.hero-sequence.is-beat-2 .beat-two,
.hero-sequence.is-beat-3 .beat-two,
.hero-sequence.is-beat-3 .beat-three,
.hero-sequence.is-beat-4 .beat-two,
.hero-sequence.is-beat-4 .beat-three,
.hero-sequence.is-beat-5 .beat-two,
.hero-sequence.is-beat-5 .beat-three {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-sequence.is-beat-5 .beat-five {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  max-width: 13ch;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.hl { color: var(--green); }
.hm { color: var(--muted); font-weight: 600; }

.hero-sub {
  font-size: 1.04rem; color: var(--muted-strong);
  max-width: 640px; margin-bottom: 28px;
  font-weight: 400; line-height: 1.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-sub strong { color: var(--text); font-weight: 400; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;

  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-highlight-target {
  position: relative;
  display: inline-block;
  color: rgba(242, 243, 238, 0.76);
  transition: color 0.45s ease, text-shadow 0.45s ease;
}
.hero-highlight-target::before {
  content: '';
  position: absolute;
  left: -0.25em;
  right: -0.2em;
  top: -0.18em;
  bottom: -0.08em;
  background: radial-gradient(ellipse at 50% 35%, rgba(255, 226, 160, 0.3), rgba(255, 226, 160, 0.12) 45%, transparent 78%);
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}
.hero-sequence.is-beat-4 .hero-highlight-target,
.hero-sequence.is-beat-5 .hero-highlight-target {
  color: #fff6da;
  text-shadow: 0 0 20px rgba(255, 214, 122, 0.28);
}
.hero-sequence.is-beat-4 .hero-highlight-target::before,
.hero-sequence.is-beat-5 .hero-highlight-target::before {
  opacity: 1;
}
/* ─────────────────────────────────────────────
   STREET LAMP  –  desktop baseline
   Anchor: pole centre-x = 31px from scene left
   ─────────────────────────────────────────────
   pole   : left=26  w=10  → centre=31
   arm    : left=31  w=132 → right-end=163  top=26
   head   : left=163 w=58  → centre=192   top=36  h=74  bottom=110
   light  : top=110  left= 192-(360/2)= 12
   ───────────────────────────────────────────── */
.hero-lamp-scene {
  position: absolute;
  inset: 2% auto auto 58%;
  width: min(28vw, 300px);
  height: min(62vh, 520px);
  z-index: 1;
  transition: opacity 0.45s ease, transform 0.6s ease;
  pointer-events: none;
  overflow: visible;
}
.hero-lamp {
  position: absolute;
  inset: 0;
  overflow: visible;
}
.hero-lamp::before,
.hero-lamp::after,
.hero-lamp-head,
.hero-lamp-arm,
.hero-lamp-light {
  position: absolute;
  display: block;
}

/* 1 · POLE  centre-x=31 */
.hero-lamp::before {
  content: '';
  left: 26px;
  top: 16px;
  width: 10px;
  height: 330px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(238, 243, 242, 0.38), rgba(176, 188, 190, 0.18) 58%, rgba(122, 134, 138, 0.1));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* 2 · HORIZONTAL ARM  pole-centre → head left-edge
        left=31  top=26 (centre of pole top area)  w=132 */
.hero-lamp::after {
  content: '';
  left: 31px;
  top: 26px;
  width: 132px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 220, 221, 0.28), rgba(232, 236, 235, 0.62) 55%, rgba(176, 188, 190, 0.14));
}

/* 3 · CURVED ELBOW  sits at junction of arm & head */
.hero-lamp-arm {
  top: 28px;
  left: 131px;
  width: 40px;
  height: 28px;
  border-top: 4px solid rgba(230, 236, 236, 0.34);
  border-right: 4px solid rgba(230, 236, 236, 0.34);
  border-radius: 0 18px 0 0;
  background: transparent;
}

/* 4 · LANTERN HEAD  left=163  top=36  w=58  h=74  → bottom=110  centre-x=192 */
.hero-lamp-head {
  top: 36px;
  left: 163px;
  width: 58px;
  height: 74px;
  background: linear-gradient(180deg, rgba(240, 243, 242, 0.16), rgba(176, 188, 190, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 18px 24px 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero-lamp-head::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  width: 30px;
  height: 32px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(250, 233, 181, 0.18), rgba(255, 214, 122, 0.04));
  border: 1px solid rgba(255, 243, 212, 0.18);
  transform: translateX(-50%);
}
.hero-lamp-head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 225, 168, 0.94);
  box-shadow: 0 0 16px rgba(255, 220, 136, 0.7);
  filter: blur(1px);
  transform: translateX(-50%);
}

/* 5 · LIGHT BEAM  top = head-bottom=110  left = head-centre − beam-w/2 = 192−180=12
        transform-origin at top-centre of beam box = 50% 0 */
.hero-lamp-light {
  top: 110px;
  left: 12px;
  width: 360px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 236, 184, 0.54), rgba(255, 221, 140, 0.28) 24%, rgba(255, 214, 122, 0.1) 54%, transparent 82%);
  clip-path: polygon(44% 0%, 56% 0%, 100% 100%, 0% 100%);
  filter: blur(14px);
  opacity: 0;
  transform-origin: 50% 0%;
  transform: scaleY(0.92) scaleX(0.96);
}
.hero-sequence.is-beat-4 .hero-lamp-light {
  opacity: 0.7;
  animation: lampFlicker 0.85s linear 1;
}
.hero-sequence.is-beat-5 .hero-lamp-light {
  opacity: 0.96;
  transform: scaleY(1) scaleX(1);
  animation: none;
}
@keyframes lampFlicker {
  0%, 18%, 42%, 64% { opacity: 0.12; }
  10%, 28%, 54%, 100% { opacity: 0.78; }
}

.hero-stats {
  display: flex; gap: 44px;
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--green);
}
.stat-label { font-size: 0.79rem; color: var(--muted); margin-top: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: #11150f;
  padding: 14px 28px; border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s; border: none;
  cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: #d7eda0; transform: translateY(-2px); }

.btn-ghost {
  background: var(--glass); color: var(--text);
  padding: 14px 30px; border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
  backdrop-filter: blur(10px); display: inline-block;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ── SECTIONS ── */
section { padding: 96px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.12; margin-bottom: 14px;
}
.section-sub {
  color: var(--muted); font-size: 0.98rem;
  max-width: 560px; font-weight: 400; line-height: 1.72;
}
.section-header { margin-bottom: 56px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── GLASS CARD ── */
.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  padding: 32px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 255, 106, 0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.glass-card:hover { border-color: var(--green-border); transform: translateY(-4px); }
.glass-card:hover::before { opacity: 1; }

/* ── GRIDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }

/* ── CARDS ── */
.card-icon,
.service-icon,
.ind-icon,
.contact-icon {
  position: relative;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.card-icon,
.service-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--green-border);
  border-radius: 12px;
  background-color: rgba(201, 228, 114, 0.08);
  margin-bottom: 15px;
}

.card-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* Icon file map
   Put your files into /icons/ with these exact names:
   why-personal.svg
   why-fast.svg
   why-transparent.svg
   why-partner.svg
   service-web.svg
   service-support.svg
   industry-restaurant.svg
   industry-beauty.svg
   industry-retail.svg
   industry-trades.svg
   industry-health.svg
   industry-real-estate.svg
   contact-mail.svg
   contact-location.svg
   contact-time.svg
   contact-call.svg
   contact-social.svg
   contact-hours.svg
*/
.icon-why-personal { background-image: url("icons/why-personal.svg"); }
.icon-why-fast { background-image: url("icons/why-fast.svg"); }
.icon-why-transparent { background-image: url("icons/why-transparent.svg"); }
.icon-why-partner { background-image: url("icons/why-partner.svg"); }
.icon-service-web { background-image: url("icons/service-web.svg"); }
.icon-service-support { background-image: url("icons/service-support.svg"); }
.icon-ind-restaurant { background-image: url("icons/industry-restaurant.svg"); }
.icon-ind-beauty { background-image: url("icons/industry-beauty.svg"); }
.icon-ind-retail { background-image: url("icons/industry-retail.svg"); }
.icon-ind-trades { background-image: url("icons/industry-trades.svg"); }
.icon-ind-health { background-image: url("icons/industry-health.svg"); }
.icon-ind-real-estate { background-image: url("icons/industry-real-estate.svg"); }
.icon-contact-mail { background-image: url("icons/contact-mail.svg"); }
.icon-contact-location { background-image: url("icons/contact-location.svg"); }
.icon-contact-time { background-image: url("icons/contact-time.svg"); }
.icon-contact-call { background-image: url("icons/contact-call.svg"); }
.icon-contact-social { background-image: url("icons/contact-social.svg"); }
.icon-contact-hours { background-image: url("icons/contact-hours.svg"); }

/* ── SERVICES ── */
.service-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 5px 10px;
  font-size: 0.67rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-strong);
  font-weight: 700; margin-bottom: 15px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-title { font-family: 'Syne', sans-serif; font-size: 2.00rem; font-weight: 700; margin-bottom: 0; }
.service-desc { color: var(--muted-strong); font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }
.service-items { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-items li { font-size: 0.84rem; color: var(--muted); padding-left: 16px; position: relative; }
.service-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 15px; }
.ind-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 20px; transition: all 0.3s;
}
.ind-card:hover { border-color: var(--green-border); background: rgba(127, 255, 106, 0.03); }
.ind-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  background-size: 20px 20px;
}

.ind-name { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; }
.ind-desc { color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

/* ── PROCESS ── */
.steps { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: 22px; padding-bottom: 42px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 17px; top: 40px; bottom: 0;
  width: 1px; background: var(--glass-border);
}
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--green-border);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: var(--green); background: var(--green-dim);
}
.step-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.step-desc { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

/* ── TECH STACK ── */
/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 11px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03)); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green-border); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  padding: 19px 22px;
  font-family: 'Syne', sans-serif;
  font-size: 0.96rem; font-weight: 700;
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
  text-align: left;
}
.faq-arrow { color: var(--green); font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 22px 18px; color: var(--muted-strong); font-size: 0.9rem; line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; }
.price-card { 
  position: relative; 
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.price-card.featured { border-color: rgba(127, 255, 106, 0.38); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--dark);
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.07em; white-space: nowrap;
}
.price-name {
  font-family: 'Syne', sans-serif; font-size: 0.94rem; font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text); margin-bottom: 12px;
}
.price-amount { 
  font-family: 'Syne', sans-serif; 
  font-size: 2.6rem; 
  font-weight: 800; 
  line-height: 1;
  margin-bottom: 4px;
}
.price-plus {
  font-size: 1.4rem;
  color: var(--green);
}
.price-note { 
  font-size: 0.8rem; 
  color: var(--muted); 
  margin-top: 0; 
  margin-bottom: 22px; 
  line-height: 1.5; 
}
.price-features { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-bottom: 16px;
  flex-grow: 1;
}
.price-features li {
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.price-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.price-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.5;
}
.price-btn {
  display: block; 
  width: 100%; 
  text-align: center;
  padding: 12px; 
  border-radius: 6px;
  font-family: 'Syne', sans-serif; 
  font-weight: 700;
  font-size: 0.83rem; 
  letter-spacing: 0.04em;
  text-decoration: none; 
  transition: all 0.2s;
  cursor: pointer; 
  border: none;
  margin-top: auto;
}
.price-btn.outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text); }
.price-btn.outline:hover { border-color: var(--green); color: var(--green); }
.price-btn.solid { background: var(--green); color: var(--dark); }
.price-btn.solid:hover { background: #a0ffaa; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035)); border: 1px solid var(--glass-border);
  border-radius: 22px; padding: 56px 48px;
  text-align: center; backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 228, 114, 0.35), transparent);
}
.cta-band h2 { margin-bottom: 13px; }
.cta-band p {
  color: var(--muted-strong); margin-bottom: 30px;
  font-size: 1rem; max-width: 560px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
.quote-band {
  max-width: 900px;
  margin: 0 auto;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 17px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background-color: rgba(201, 228, 114, 0.08); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  background-size: 18px 18px;
}
.contact-label { color: var(--muted); font-size: 0.73rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-val {
  font-size: 0.87rem;
  color: var(--text);
  text-decoration: none;
}

.contact-val a {
  color: var(--text);
  text-decoration: none;
}

.contact-val a:hover {
  color: var(--green);
}

.contact-sep {
  color: var(--muted);
  margin: 0 8px;
}

a.contact-val:hover {
  color: var(--green);
}

.contact-form { display: flex; flex-direction: column; gap: 13px; }
.contact-form-head { display: flex; flex-direction: column; gap: 8px; }
.contact-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.contact-intro {
  margin-bottom: 34px;
}
.contact-form-copy,
.contact-form-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.tally-frame {
  width: 100%;
  min-height: 540px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.form-submit {
  background: var(--green); color: #11150f;
  border: none; border-radius: 999px; padding: 13px;
  cursor: pointer; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  transition: all 0.2s; width: 100%;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.form-submit:hover { background: #d7eda0; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 30px 0; color: var(--muted);
  font-size: 0.79rem; position: relative; z-index: 1;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--green); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-links { display: flex; gap: 22px; }
.footer-brand span { color: var(--muted-strong); }
.footer-flag-lt { font-weight: 700; }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer-flag-lt {
    background: linear-gradient(90deg, #fdb913 0 33%, #006a44 33% 66%, #c1272d 66% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* ── ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wrap { padding: 0 18px; }
  nav { padding: 14px 0; }
  .nav-inner {
    align-items: center;
    gap: 12px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .logo { font-size: 1.34rem; }
  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(13, 17, 20, 0.97);
    backdrop-filter: blur(24px);
  }
  .nav-panel.open {
    display: flex;
  }
  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .nav-links a { font-size: 0.95rem; }
  .nav-right { gap: 8px; }
  .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .lang-toggle { padding: 2px; }
  .lang-btn {
    font-size: 0.66rem;
    padding: 5px 9px;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  .hero:not(.hero-sequence) {
    min-height: auto;
    padding: 110px 0 56px;
  }
  .hero-sequence-track {
    min-height: 200svh;
  }
  .hero-sequence-sticky {
    min-height: 100svh;
    padding-top: 88px;
  }
  h1 {
    max-width: 12ch;
    font-size: 2.18rem;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.72rem;
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .section-tag {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
  .hero-sub {
    font-size: 0.96rem;
    line-height: 1.68;
  }
  /* ─────────────────────────────────────────────
     LAMP  tablet  ≤768px
     pole centre-x=24  arm-w=100  head left=124 w=48 h=62 bottom=108  centre=148
     beam: top=108  left=148−125=23  w=250
     ───────────────────────────────────────────── */
  .hero-lamp-scene {
    inset: 6% auto auto 58%;
    width: min(28vw, 240px);
    height: 320px;
    overflow: visible;
  }
  .hero-lamp::before {
    left: 20px;
    top: 16px;
    width: 8px;
    height: 250px;
  }
  .hero-lamp::after {
    left: 24px;
    top: 22px;
    width: 100px;
    height: 6px;
  }
  .hero-lamp-arm {
    top: 22px;
    left: 103px;
    width: 30px;
    height: 22px;
  }
  .hero-lamp-head {
    top: 30px;
    left: 124px;
    width: 48px;
    height: 62px;
  }
  .hero-lamp-light {
    top: 92px;
    left: 23px;
    width: 250px;
    height: 240px;
  }
  .section-sub {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-stats {
    gap: 18px;
    margin-top: 42px;
    padding-top: 28px;
  }
  .stat-num { font-size: 1.65rem; }
  .stat-label { font-size: 0.74rem; }
  section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .glass-card,
  .cta-band,
  .ind-card {
    padding: 22px;
  }
  .card-title,
  .service-title {
    font-size: 1rem;
  }
  .card-desc,
  .service-desc,
  .ind-desc,
  .contact-form-copy,
  .contact-form-note {
    font-size: 0.84rem;
    line-height: 1.6;
  }
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  nav { padding: 12px 0; }
  .nav-inner {
    justify-content: space-between;
  }
  .logo {
    font-size: 1.24rem;
  }
  .hero-sequence-track {
    min-height: 185svh;
  }
  .hero-sequence-sticky {
    padding-top: 82px;
  }
  h1 {
    max-width: none;
    font-size: 1.92rem;
    line-height: 1.06;
  }
  h2 {
    font-size: 1.38rem;
    line-height: 1.14;
  }
  .hero-sub,
  .section-sub {
    font-size: 0.86rem;
  }
  /* ─────────────────────────────────────────────
     LAMP  mobile  ≤480px
     scene: right-anchored, moved left with right:12px
     pole  : left=16 w=7  centre=19
     arm   : left=19 top=20 w=72
     elbow : left=83 top=16
     head  : left=91 top=24 w=34 h=48  bottom=72  centre=108
     beam  : top=72  left=108−85=23   w=170
     ───────────────────────────────────────────── */
 .hero-lamp-scene {
  position: absolute;
  overflow: hidden;
  top: 20px;
  right: 0;
  bottom: auto;
  left: auto;
  width: 160px;
  height: 210px;
}
  .hero-lamp::before {
    left: 16px;
    top: 20px;
    width: 7px;
    height: 150px;
  }
  .hero-lamp::after {
    left: 19px;
    top: 24px;
    width: 72px;
    height: 5px;
  }
  .hero-lamp-arm {
    top: 25px;
    left: 83px;
    width: 16px;
    height: 16px;
  }
  .hero-lamp-head {
    left: 91px;
    top: 40px;
    width: 34px;
    height: 48px;
  }
  .hero-sequence.is-beat-4 .hero-lamp-light {
    animation: lampFlicker 0.85s linear 1;
    top: 70px;
    width: clamp(170px, 20vw, 260px);
    left: 14.5%;
    height: 150px;
    filter: blur(9px);

    transform: rotate(21deg);
    transform-origin: top center;
}
  .grid-4,
  .grid-3,
  .industries-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .glass-card,
  .ind-card,
  .cta-band {
    padding: 18px;
  }
  .service-badge,
  .price-name {
    font-size: 0.62rem;
  }
  .card-title,
  .service-title,
  .contact-form-title {
    font-size: 0.95rem;
  }
  .hero-stats > div {
    min-width: 0;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .stat-label { font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }


  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ══ GRID-2 ══ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }

/* ══ PORTFOLIO ══ */
.portfolio-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.ptab { padding: 10px 22px; border: 1px solid var(--glass-border); border-radius: 100px; background: var(--glass); color: var(--muted); font-family: 'Syne', sans-serif; font-size: 0.84rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.ptab:hover { color: var(--green); border-color: rgba(127,255,106,0.3); }
.ptab.active { background: var(--green-dim); border-color: var(--green-border); color: var(--green); }

.portfolio-panels { position: relative; }
.portfolio-panel { display: none; }
.portfolio-panel.active { display: grid; gap: 24px; animation: pfIn 0.3s ease; }
@keyframes pfIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.portfolio-frame { display: grid; grid-template-columns: minmax(0,1fr); gap: 20px; align-items: start; }

/* browser chrome */
.pf-browser { border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.03); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.pf-bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.03); }
.pf-dots { display: flex; gap: 5px; flex-shrink: 0; }
.pf-dots span { width: 9px; height: 9px; border-radius: 50%; }
.pf-dots span:nth-child(1) { background: #ff7b72; }
.pf-dots span:nth-child(2) { background: #ffd76a; }
.pf-dots span:nth-child(3) { background: #8be28b; }
.pf-address { flex: 1; padding: 5px 12px; border: 1px solid var(--glass-border); border-radius: 100px; color: var(--muted); font-size: 0.76rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pf-screen { padding: 18px; display: grid; gap: 14px; min-height: 360px; }
.beauty-screen { background: linear-gradient(160deg, rgba(255,190,118,0.08) 0%, rgba(105,215,255,0.05) 100%); }
.food-screen   { background: linear-gradient(160deg, rgba(255,150,50,0.12) 0%, rgba(30,15,0,0.25) 100%); }
.re-screen     { background: linear-gradient(160deg, rgba(105,215,255,0.09) 0%, rgba(127,255,106,0.05) 100%); }

/* nav strip inside mockup */
.pf-nav-strip { display: flex; align-items: center; justify-content: space-between; padding: 7px 11px; border: 1px solid var(--glass-border); border-radius: 7px; background: rgba(255,255,255,0.04); }
.pf-logo-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green); }
.pf-logo-dot.amber { background: #ffbe76; }
.pf-logo-dot.blue  { background: #69d7ff; }
.pf-nav-items { display: flex; gap: 9px; }
.pf-nav-items i { display: block; width: 28px; height: 7px; border-radius: 100px; background: rgba(255,255,255,0.13); }
.pf-cta-pill { padding: 4px 11px; border-radius: 100px; font-size: 0.72rem; font-family: 'Syne', sans-serif; font-weight: 700; }
.accent-green { background: var(--green); color: #080c10; }
.accent-amber { background: #ffbe76; color: #1a0e00; }
.accent-blue  { background: #69d7ff; color: #071017; }

/* hero block */
.pf-hero-block { display: grid; gap: 9px; }
.pf-eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--green); }
.pf-eyebrow.amber { color: #ffbe76; }
.pf-eyebrow.blue  { color: #69d7ff; }
.pf-h1 { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; line-height: 1.1; color: var(--text); }
.pf-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-btn { display: inline-flex; align-items: center; padding: 7px 13px; border-radius: 5px; font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; }
.pf-btn.solid { background: var(--green); color: #080c10; }
.pf-btn.outline { border: 1px solid var(--glass-border); color: var(--text); }
.pf-btn.amber-solid { background: #ffbe76; color: #1a0e00; }

/* cards row */
.pf-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.pf-card { padding: 12px; border: 1px solid var(--glass-border); border-radius: 8px; background: rgba(255,255,255,0.04); display: grid; gap: 9px; }
.pf-card-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(127,255,106,0.18); }
.pf-card-icon.warm { background: rgba(255,190,118,0.28); }
.pf-card-lines { display: grid; gap: 5px; }
.pf-card-lines i { display: block; height: 7px; border-radius: 100px; background: rgba(255,255,255,0.14); }
.pf-card-lines i.w70 { width:70%; } .pf-card-lines i.w50 { width:50%; }
.pf-card-lines i.w60 { width:60%; } .pf-card-lines i.w80 { width:80%; }
.pf-card-lines i.w75 { width:75%; } .pf-card-lines i.w55 { width:55%; }

/* price strip */
.pf-price-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; padding: 11px; border: 1px solid var(--glass-border); border-radius: 8px; background: rgba(255,255,255,0.03); }
.pf-price-item { display: grid; gap: 3px; }
.pf-price-label { font-size: 0.72rem; color: var(--muted); }
.pf-price-val { font-family: 'Syne', sans-serif; font-size: 0.86rem; font-weight: 700; color: var(--green); }

/* food split */
.pf-split-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 14px; align-items: center; }
.pf-food-photo { aspect-ratio: 3/4; border-radius: 9px; background: linear-gradient(180deg, rgba(255,140,40,0.45), rgba(90,35,5,0.3)); border: 1px solid rgba(255,150,50,0.18); }
.pf-food-copy { display: grid; gap: 9px; }
.pf-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.pf-chips span { padding: 3px 9px; border: 1px solid rgba(255,190,118,0.22); border-radius: 100px; font-size: 0.7rem; color: #ffbe76; }
.pf-menu-preview { display: grid; border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; }
.pf-menu-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 13px; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); }
.pf-menu-row:last-child { border-bottom: none; }
.pf-dish { font-size: 0.81rem; color: var(--text); }
.pf-dish-price { font-family: 'Syne', sans-serif; font-size: 0.81rem; font-weight: 700; color: #ffbe76; }

/* real estate */
.pf-re-hero { display: grid; gap: 9px; }
.pf-filter-bar { display: flex; gap: 7px; flex-wrap: wrap; }
.pf-filter { padding: 4px 11px; border: 1px solid var(--glass-border); border-radius: 100px; font-size: 0.74rem; color: var(--muted); background: rgba(255,255,255,0.03); }
.pf-filter.active { border-color: rgba(105,215,255,0.36); background: rgba(105,215,255,0.1); color: #69d7ff; }
.pf-property-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.pf-prop { border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.03); }
.pf-prop-img { aspect-ratio: 4/3; background: linear-gradient(180deg, rgba(105,215,255,0.18), rgba(20,50,70,0.2)); }
.pf-prop-img.alt { background: linear-gradient(180deg, rgba(127,255,106,0.14), rgba(15,40,20,0.2)); }
.pf-prop-info { padding: 7px 9px; display: grid; gap: 4px; }
.pf-prop-info i { display: block; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.13); }
.pf-prop-info i.w80{width:80%} .pf-prop-info i.w70{width:70%} .pf-prop-info i.w75{width:75%}
.pf-prop-info i.w65{width:65%} .pf-prop-info i.w55{width:55%} .pf-prop-info i.w45{width:45%}
.pf-prop-info i.w50{width:50%} .pf-prop-info i.w60{width:60%}
.pf-prop-info i.price { background: rgba(105,215,255,0.38); }

/* portfolio meta */
.portfolio-meta { display: grid; gap: 10px; }
.pm-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-tags span { padding: 5px 12px; border: 1px solid var(--glass-border); border-radius: 100px; font-size: 0.79rem; color: var(--muted); background: var(--glass); }
.pm-desc { color: var(--muted); font-size: 0.92rem; max-width: 680px; line-height: 1.65; }
.pf-eyebrow.bronze { color: #c4956a; }

/* portfolio concepts v3 */
.beauty-screen {
  background: #f9f4ef;
  color: #1a1008;
  gap: 0;
  padding: 0;
}
.pf-beauty-brandbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid #e5d8cc;
}
.pf-beauty-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.pf-beauty-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d4a57a;
}
.pf-beauty-menu {
  display: inline-flex;
  justify-content: center;
  gap: 14px;
}
.pf-beauty-menu i {
  display: block;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: #dcc5b1;
}
.pf-beauty-cta {
  border: 1px solid #c4956a;
  padding: 7px 13px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: #8a5a2a;
}
.pf-beauty-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}
.pf-beauty-copy {
  padding: 34px 26px;
  display: grid;
  gap: 12px;
  align-content: center;
}
.pf-beauty-rule {
  width: 36px;
  height: 1px;
  background: #c4956a;
}
.pf-beauty-title {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 600;
}
.pf-beauty-title em {
  color: #c4956a;
  font-style: italic;
}
.pf-beauty-note {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #7a6a5a;
  max-width: 280px;
}
.pf-beauty-btnrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pf-beauty-btn-dark {
  background: #1a1008;
  color: #f9f4ef;
  padding: 8px 14px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}
.pf-beauty-btn-line {
  border-bottom: 1px solid #c4956a;
  color: #1a1008;
  padding: 8px 0;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}
.pf-beauty-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.pf-beauty-gallery span {
  display: block;
  background-size: cover;
  background-position: center;
}
.pf-beauty-gallery .b1 { background-image: url("assets/demos/beauty-main.jpg"); }
.pf-beauty-gallery .b2 { background-image: url("assets/demos/beauty-1.jpg"); margin-top: 16px; }
.pf-beauty-gallery .b3 { background-image: url("assets/demos/beauty-2.jpg"); margin-top: -16px; }
.pf-beauty-gallery .b4 { background-image: url("assets/demos/beauty-3.jpg"); }
.pf-beauty-services {
  background: #1a1008;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pf-beauty-service {
  padding: 18px 18px 16px;
  border-right: 1px solid #2e2010;
}
.pf-beauty-service:last-child { border-right: none; }
.pf-beauty-service .code {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: #9a7a5a;
  margin-bottom: 8px;
}
.pf-beauty-service .title {
  color: #f0e4d4;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.pf-beauty-service .text {
  color: #7a6050;
  font-size: 0.68rem;
  line-height: 1.45;
  margin-bottom: 8px;
}
.pf-beauty-service .price {
  color: #c4956a;
  font-size: 0.85rem;
  font-family: "Syne", sans-serif;
}
.pf-beauty-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid #e5d8cc;
}
.pf-beauty-quote .q-mark {
  color: #c4956a;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.pf-beauty-quote p {
  color: #4a3828;
  font-size: 0.8rem;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 10px;
}
.pf-beauty-quote .q-sign {
  color: #c4956a;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}
.pf-beauty-form {
  background: #f0e8de;
  padding: 12px 14px;
}
.pf-beauty-form .f-head {
  font-size: 0.66rem;
  color: #7a6a5a;
  margin-bottom: 10px;
}
.pf-beauty-form .f-input {
  height: 28px;
  border: 1px solid #e0d0c0;
  background: #fff;
  margin-bottom: 6px;
}
.pf-beauty-form .f-btn {
  margin-top: 8px;
  background: #1a1008;
  color: #f9f4ef;
  text-align: center;
  padding: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.food-screen {
  background: #0a0704;
  gap: 0;
  padding: 0;
}
.pf-food-hero {
  position: relative;
  height: 270px;
  overflow: hidden;
}
.pf-food-photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  opacity: 0.55;
}
.pf-food-photo-grid span {
  display: block;
  background-size: cover;
  background-position: center;
}
.pf-food-photo-grid .f1 { background-image: url("assets/demos/food-main.jpg"); }
.pf-food-photo-grid .f2 { background-image: url("assets/demos/food-1.jpg"); grid-row: span 2; }
.pf-food-photo-grid .f3 { background-image: url("assets/demos/food-2.jpg"); }
.pf-food-photo-grid .f4 { background-image: url("assets/demos/food-main.jpg"); }
.pf-food-photo-grid .f5 { background-image: url("assets/demos/food-1.jpg"); }
.pf-food-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: end;
  padding: 20px 24px;
}
.pf-food-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}
.pf-food-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: #f0d090;
}
.pf-food-nav {
  display: inline-flex;
  gap: 12px;
}
.pf-food-nav i {
  display: block;
  width: 36px;
  height: 7px;
  border-radius: 999px;
  background: #6a4c20;
}
.pf-food-cta {
  background: #c8891e;
  color: #0a0704;
  padding: 6px 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.pf-food-kicker {
  color: #c8891e;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.pf-food-title {
  font-family: "Syne", sans-serif;
  color: #f8ead0;
  font-size: 1.65rem;
  line-height: 1.05;
  margin-bottom: 12px;
}
.pf-food-title em { font-style: italic; }
.pf-food-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-food-btn {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 8px 12px;
}
.pf-food-btn.solid {
  background: #c8891e;
  color: #0a0704;
  font-weight: 700;
}
.pf-food-btn.line {
  border: 1px solid #4a3010;
  color: #c8891e;
}
.pf-food-lower {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  background: #0d0904;
}
.pf-food-menu {
  padding: 18px 20px;
  border-right: 1px solid #1e1508;
}
.pf-food-menu .head,
.pf-food-location .head {
  color: #6a5030;
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.pf-food-menu .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #1e1508;
  padding: 10px 0;
}
.pf-food-menu .row strong {
  display: block;
  color: #f0d8a8;
  font-size: 0.8rem;
  margin-bottom: 2px;
}
.pf-food-menu .row small {
  display: block;
  color: #5a4020;
  font-size: 0.64rem;
}
.pf-food-menu .row span {
  color: #c8891e;
  font-family: "Syne", sans-serif;
  font-size: 0.86rem;
}
.pf-food-menu .meta {
  color: #5a4020;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  margin-top: 9px;
}
.pf-food-location {
  padding: 18px 16px;
}
.pf-food-location .map {
  height: 72px;
  border: 1px solid #2a1e08;
  background: #150f06;
  display: grid;
  place-items: center;
  color: #5a4020;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 11px;
}
.pf-food-location .txt {
  color: #a08050;
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.pf-food-location .call {
  background: #1e1508;
  color: #c8891e;
  text-align: center;
  padding: 8px 10px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.pf-food-foot {
  padding: 10px 20px;
  border-top: 1px solid #1e1508;
  color: #4a3018;
  font-size: 0.58rem;
  display: flex;
  justify-content: space-between;
}
.pf-food-foot .social {
  display: inline-flex;
  gap: 8px;
}
.pf-food-foot .social i {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  background: #3a250e;
}

.re-screen {
  background: #fff;
  color: #1a2e1a;
  padding: 0;
  gap: 0;
}
.pf-re-header {
  background: #f0f4f0;
  border-bottom: 1px solid #dce6dc;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
}
.pf-re-brand span {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
.pf-re-brand small {
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: #5a7a5a;
  margin-left: 4px;
}
.pf-re-nav {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
}
.pf-re-nav i {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  background: #c5d5c5;
}
.pf-re-cta {
  background: #2a4a2a;
  color: #e8f0e8;
  padding: 7px 12px;
  font-size: 0.62rem;
}
.pf-re-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 224px;
}
.pf-re-copy {
  padding: 26px 22px;
}
.pf-re-copy .kicker {
  color: #4a7a4a;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.pf-re-copy .title {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 10px;
}
.pf-re-copy .title em {
  font-style: italic;
}
.pf-re-copy p {
  color: #6a806a;
  font-size: 0.73rem;
  line-height: 1.6;
  max-width: 290px;
  margin-bottom: 14px;
}
.pf-re-copy .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-re-copy .btn-dark {
  background: #2a4a2a;
  color: #e8f0e8;
  padding: 8px 10px;
  font-size: 0.62rem;
}
.pf-re-copy .btn-line {
  border: 1px solid #4a7a4a;
  color: #2a4a2a;
  padding: 8px 10px;
  font-size: 0.62rem;
}
.pf-re-gallery {
  background: #dce8dc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.pf-re-gallery span {
  display: block;
  background-size: cover;
  background-position: center;
}
.pf-re-gallery span:nth-child(1) { background-image: url("assets/demos/re-main.jpg"); }
.pf-re-gallery span:nth-child(2) { background-image: url("assets/demos/re-1.jpg"); }
.pf-re-gallery span:nth-child(3) { background-image: url("assets/demos/re-2.jpg"); }
.pf-re-gallery span:nth-child(4) { background-image: url("assets/demos/re-3.jpg"); }
.pf-re-filter {
  background: #f8fbf8;
  border-top: 1px solid #dce6dc;
  border-bottom: 1px solid #dce6dc;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.pf-re-filter b {
  color: #8a9a8a;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  margin-right: 4px;
}
.pf-re-filter span {
  border: 1px solid #c0d0c0;
  border-radius: 999px;
  color: #4a7a4a;
  font-size: 0.64rem;
  padding: 4px 10px;
}
.pf-re-filter span.active {
  background: #2a4a2a;
  border-color: #2a4a2a;
  color: #e8f0e8;
}
.pf-re-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #dce6dc;
}
.pf-re-grid article {
  border-right: 1px solid #dce6dc;
}
.pf-re-grid article:last-child { border-right: none; }
.pf-re-grid .img {
  height: 92px;
  background-image: url("assets/demos/re-1.jpg");
  background-size: cover;
  background-position: center;
}
.pf-re-grid .img.alt {
  background-image: url("assets/demos/re-2.jpg");
  background-size: cover;
  background-position: center;
}
.pf-re-grid article:nth-child(3) .img {
  background-image: url("assets/demos/re-3.jpg");
}
.pf-re-grid .info {
  padding: 10px 12px;
}
.pf-re-grid .info strong {
  display: block;
  font-size: 0.74rem;
  margin-bottom: 2px;
}
.pf-re-grid .info small {
  display: block;
  color: #8a9a8a;
  font-size: 0.62rem;
  margin-bottom: 8px;
}
.pf-re-grid .info .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.pf-re-grid .info .row span {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
}
.pf-re-grid .info .row i {
  border: 1px solid #c0d0c0;
  font-size: 0.58rem;
  padding: 3px 8px;
  color: #4a7a4a;
  font-style: normal;
}
.pf-re-stats {
  background: #f8fbf8;
  border-bottom: 1px solid #dce6dc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pf-re-stats > div {
  text-align: center;
  padding: 14px 6px;
  border-right: 1px solid #dce6dc;
}
.pf-re-stats > div:last-child { border-right: none; }
.pf-re-stats strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}
.pf-re-stats small {
  color: #8a9a8a;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}
.pf-re-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.pf-re-foot > span {
  color: #8a9a8a;
  font-size: 0.66rem;
}
.pf-re-foot .actions {
  display: flex;
  gap: 8px;
}
.pf-re-foot i,
.pf-re-foot b {
  font-style: normal;
  font-weight: 500;
  font-size: 0.62rem;
  padding: 7px 9px;
}
.pf-re-foot i {
  border: 1px solid #4a7a4a;
  color: #2a4a2a;
}
.pf-re-foot b {
  background: #2a4a2a;
  color: #e8f0e8;
}

/* ══ STEPPER ══ */
.stepper { display: grid; grid-template-columns: 250px minmax(0,1fr); border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; background: var(--glass); backdrop-filter: blur(16px); }
.stepper-nav { border-right: 1px solid var(--glass-border); display: grid; align-content: start; }
.step-btn { display: flex; align-items: center; gap: 12px; padding: 17px 18px; border: none; border-bottom: 1px solid var(--glass-border); background: transparent; color: var(--muted); text-align: left; cursor: pointer; transition: all 0.2s; }
.step-btn:last-child { border-bottom: none; }
.step-btn:hover { background: rgba(127,255,106,0.04); color: var(--text); }
.step-btn.active { background: var(--green-dim); color: var(--green); border-right: 2px solid var(--green); margin-right: -1px; }
.step-num { font-family: 'Syne', sans-serif; font-size: 0.76rem; font-weight: 700; opacity: 0.55; flex-shrink: 0; }
.step-btn.active .step-num { opacity: 1; }
.step-label { font-family: 'Syne', sans-serif; font-size: 0.87rem; font-weight: 700; }
.stepper-content { padding: 38px 34px; min-height: 260px; display: flex; align-items: center; }
.step-panel { display: none; }
.step-panel.active { display: grid; gap: 13px; animation: stepIn 0.3s ease; }
@keyframes stepIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.step-panel-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: rgba(127,255,106,0.1); line-height: 1; }
.step-panel h3 { font-family: 'Syne', sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--text); margin-top: -6px; }
.step-panel p  { color: var(--muted); font-size: 0.96rem; max-width: 400px; line-height: 1.65; }

/* ══ PRICING amounts ══ */
.price-amount { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--green); margin-bottom: 4px; line-height: 1; }

/* ══ RESPONSIVE additions ══ */
@media (max-width: 900px) {
  .portfolio-frame { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; }
  .stepper-nav { border-right: none; border-bottom: 1px solid var(--glass-border); grid-auto-flow: column; grid-auto-columns: 1fr; overflow-x: auto; }
  .step-btn { flex-direction: column; align-items: center; text-align: center; padding: 13px 8px; border-bottom: none; border-right: 1px solid var(--glass-border); }
  .step-btn:last-child { border-right: none; }
  .step-btn.active { border-right: 1px solid var(--glass-border); border-bottom: 2px solid var(--green); margin-right: 0; margin-bottom: -1px; }
  .step-label { font-size: 0.72rem; }
  .stepper-content { padding: 26px 20px; min-height: 190px; }
  .step-panel-num { font-size: 2rem; }
  .pf-property-grid { grid-template-columns: repeat(2,1fr); }
  .pf-split-hero { grid-template-columns: 1fr; }
  .pf-food-photo { aspect-ratio: 16/7; }
  .pf-beauty-hero,
  .pf-beauty-bottom,
  .pf-food-lower,
  .pf-re-hero-split {
    grid-template-columns: 1fr;
  }
  .pf-beauty-services,
  .pf-re-grid,
  .pf-re-stats {
    grid-template-columns: 1fr;
  }
  .pf-beauty-service,
  .pf-re-grid article,
  .pf-re-stats > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pf-re-grid article:last-child,
  .pf-re-stats > div:last-child {
    border-bottom: none;
  }
  .pf-food-menu {
    border-right: none;
    border-bottom: 1px solid #1e1508;
  }
}

@media (max-width: 480px) {
  .pf-cards-row, .pf-price-strip { grid-template-columns: 1fr; }
  .pf-property-grid { grid-template-columns: repeat(2,1fr); }
  .step-label { display: none; }
  .pf-screen { min-height: auto; }
  .price-amount { font-size: 1.5rem; }
  .pf-beauty-brandbar,
  .pf-re-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pf-beauty-menu,
  .pf-re-nav {
    justify-content: start;
  }
  .pf-food-title,
  .pf-re-copy .title,
  .pf-beauty-title {
    font-size: 1.28rem;
  }
  .pf-re-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
