/* ============================================================
   Bellevo — section styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--sh-subtle); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--charcoal-900); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--sh-premium);
}
.brand-mark img,
.brand-mark svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--charcoal-700); transition: color .15s; }
.nav-links a:hover { color: var(--teal-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger svg { width: 26px; height: 26px; color: var(--charcoal); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 90px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(0,172,193,.10), transparent 60%),
    radial-gradient(800px 460px at 8% 6%, rgba(55,71,79,.06), transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 66px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.03; color: var(--charcoal-900);
  margin: 22px 0 0;
}
.hero h1 .accent { color: var(--teal-deep); }
.hero-lead { font-size: 19px; color: var(--muted); margin: 22px 0 32px; text-wrap: pretty; max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -11px;
  background-size: cover; box-shadow: var(--sh-subtle);
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 14px; color: var(--charcoal-700); }
.hero-trust-text b { color: var(--charcoal-900); }
.hero-trust-text .stars { color: var(--star); letter-spacing: 1px; font-size: 13px; }

/* phone stage */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,172,193,.22), transparent 62%);
  filter: blur(10px); z-index: -1;
}
.float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 13px 16px;
  box-shadow: var(--sh-float); display: flex; align-items: center; gap: 11px;
  font-size: 13px; z-index: 3; animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-card .fc-t { font-weight: 700; color: var(--charcoal-900); font-size: 13.5px; }
.float-card .fc-s { color: var(--muted); font-size: 12px; }
.fc-1 { top: 54px; left: -28px; animation-delay: .2s; }
.fc-2 { bottom: 96px; right: -34px; animation-delay: 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: none; }
  .fc-1 { left: 4px; } .fc-2 { right: 6px; }
}

/* ---------- PHONE MOCKUP (recreates app UI) ---------- */
.phone {
  width: 320px; border-radius: 44px; background: #0d1417; padding: 11px;
  box-shadow: var(--sh-float), 0 0 0 1px rgba(0,0,0,.04);
  position: relative;
}
.phone-screen {
  border-radius: 34px; background: #F4F6F7; overflow: hidden; height: 660px;
  position: relative; display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 128px; height: 26px; background: #0d1417; border-radius: 0 0 16px 16px; z-index: 9;
}
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 13px 22px 6px; font-size: 12.5px; font-weight: 700; color: var(--charcoal-900); }
.app-status .dots { display: flex; gap: 4px; align-items: center; }
.app-search {
  margin: 4px 16px 0; background: #fff; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 13px 16px; display: flex; align-items: center; gap: 11px; box-shadow: var(--sh-subtle);
}
.app-search svg { width: 19px; height: 19px; color: var(--teal-deep); }
.app-search span { color: var(--muted); font-size: 14px; font-weight: 500; }
.app-cats { display: flex; gap: 14px; padding: 18px 16px 8px; overflow: hidden; }
.app-cat { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: none; width: 56px; }
.app-cat .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-50); display: grid; place-items: center; color: var(--teal-dark); }
.app-cat .ic svg { width: 24px; height: 24px; }
.app-cat.sel .ic { background: var(--teal); color: #fff; }
.app-cat span { font-size: 11px; font-weight: 600; color: var(--charcoal-700); }
.app-cat.sel span { color: var(--charcoal-900); font-weight: 700; }
.app-sec-h { padding: 10px 16px 9px; font-size: 16px; font-weight: 800; color: var(--charcoal-900); letter-spacing: -.01em; }
.app-feed { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.app-biz { background: #fff; border-radius: 16px; box-shadow: var(--sh-card); overflow: hidden; }
.app-biz .photo { height: 96px; position: relative; }
.app-biz .photo .fav { position: absolute; top: 9px; right: 9px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.app-biz .photo .fav svg { width: 16px; height: 16px; color: var(--teal-deep); }
.app-biz .photo .tag { position: absolute; top: 9px; left: 9px; background: rgba(13,20,23,.78); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.app-biz .meta { padding: 11px 13px 13px; }
.app-biz .meta .row1 { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.app-biz .meta .name { font-size: 14.5px; font-weight: 700; color: var(--charcoal-900); }
.app-biz .meta .rate { font-size: 12.5px; font-weight: 700; color: var(--charcoal-900); display: flex; align-items: center; gap: 3px; }
.app-biz .meta .rate svg { width: 13px; height: 13px; color: var(--star); }
.app-biz .meta .svc { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.app-biz .meta .chips { display: flex; gap: 6px; margin-top: 9px; }
.app-biz .meta .chips i { font-style: normal; font-size: 11px; font-weight: 600; color: var(--teal-dark); background: var(--teal-50); padding: 4px 9px; border-radius: 999px; }
.app-tabbar {
  margin-top: auto; background: #fff; border-top: 1px solid var(--line);
  display: flex; justify-content: space-around; padding: 11px 8px 16px;
}
.app-tabbar .tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--charcoal-500); }
.app-tabbar .tab svg { width: 22px; height: 22px; }
.app-tabbar .tab span { font-size: 10px; font-weight: 600; }
.app-tabbar .tab.on { color: var(--teal-deep); }

/* ---------- LOGO STRIP ---------- */
.logos { padding: 30px 0 6px; }
.logos-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 46px; opacity: .72; }
.logos-row .lg { font-weight: 800; font-size: 19px; color: var(--charcoal-500); letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; }
.logos-row .lg svg { width: 20px; height: 20px; }

/* ---------- STATS ---------- */
.stats { padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: linear-gradient(180deg, #fff, var(--slate-100));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; text-align: center;
  box-shadow: var(--sh-card);
}
.stat .num { font-size: clamp(34px, 4vw, 46px); font-weight: 800; letter-spacing: -.03em; color: var(--charcoal-900); }
.stat .num .u { color: var(--teal-deep); }
.stat .lbl { font-size: 14.5px; color: var(--muted); margin-top: 4px; font-weight: 500; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- SECTION SHELL ---------- */
section.block { padding: 88px 0; }
.block-head { max-width: 720px; margin-bottom: 48px; }
.block-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.block-head .sub { margin-top: 16px; }
.block-head.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- CATEGORIES ---------- */
.cats { background: var(--slate-100); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/3.4;
  box-shadow: var(--sh-card); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-float); }
.cat-card .ph { position: absolute; inset: 0; z-index: 0; }
.cat-card .cat-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(13,20,23,.74)); z-index: 1; }
.cat-card .ic {
  position: absolute; top: 14px; left: 14px; z-index: 2; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255,255,255,.95); display: grid; place-items: center; color: var(--teal-dark);
  box-shadow: var(--sh-subtle); padding: 6px;
}
.cat-card .ic svg { width: 22px; height: 22px; }
.cat-card .ic img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cat-card .label {
  position: relative; z-index: 2; padding: 16px; color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.cat-card .label .t { font-size: 18px; font-weight: 700; line-height: 1.2; }
.cat-card .label .c { font-size: 13px; opacity: .85; line-height: 1.35; }
@media (max-width: 940px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FEATURED SALONS ---------- */
.salon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.salon {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-card); transition: transform .25s ease, box-shadow .25s ease;
}
.salon:hover { transform: translateY(-6px); box-shadow: var(--sh-float); }
.salon .ph { height: 192px; position: relative; }
.salon .ph .fav { position: absolute; top: 13px; right: 13px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; box-shadow: var(--sh-subtle); }
.salon .ph .fav svg { width: 18px; height: 18px; color: var(--teal-deep); }
.salon .ph .badge { position: absolute; top: 13px; left: 13px; background: rgba(13,20,23,.8); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.salon .body { padding: 18px 18px 20px; }
.salon .body .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.salon .body .name { font-size: 18px; font-weight: 700; color: var(--charcoal-900); letter-spacing: -.01em; }
.salon .body .loc { font-size: 13.5px; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.salon .body .loc svg { width: 14px; height: 14px; }
.salon .body .rate { display: flex; align-items: center; gap: 4px; font-weight: 700; font-size: 14px; color: var(--charcoal-900); flex: none; }
.salon .body .rate svg { width: 15px; height: 15px; color: var(--star); }
.salon .body .rate em { font-style: normal; color: var(--muted); font-weight: 500; font-size: 13px; }
.salon .body .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.salon .body .tags i { font-style: normal; font-size: 12px; font-weight: 600; color: var(--teal-dark); background: var(--teal-50); padding: 5px 11px; border-radius: 999px; }
.salon .body .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.salon .body .foot .price { font-size: 13.5px; color: var(--muted); }
.salon .body .foot .price b { color: var(--charcoal-900); font-size: 15px; }
.salon .body .foot .book { font-size: 13.5px; font-weight: 700; color: var(--teal-deep); display: flex; align-items: center; gap: 5px; }
.salon .body .foot .book svg { width: 15px; height: 15px; }
@media (max-width: 940px) { .salon-grid { grid-template-columns: 1fr; } }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--charcoal-900); color: #fff; position: relative; overflow: hidden; }
.how::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 85% 0%, rgba(0,172,193,.18), transparent 60%); }
.how .wrap { position: relative; }
.how .h-section, .how .eyebrow { color: #fff; }
.how .eyebrow { color: var(--teal-100); }
.how .sub { color: rgba(255,255,255,.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 12px; }
.step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 34px 28px; position: relative;
}
.step .n {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  font-size: 21px; font-weight: 800; box-shadow: var(--sh-premium); margin-bottom: 20px;
}
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.step p { color: rgba(255,255,255,.66); font-size: 15px; margin-top: 10px; text-wrap: pretty; }
.step .ic { position: absolute; top: 32px; right: 28px; color: rgba(0,172,193,.5); }
.step .ic svg { width: 30px; height: 30px; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 26px;
  box-shadow: var(--sh-card); display: flex; flex-direction: column;
}
.tcard .qm { font-size: 46px; line-height: .6; font-weight: 800; color: var(--teal-100); height: 26px; }
.tcard .stars { color: var(--star); letter-spacing: 2px; font-size: 15px; margin: 6px 0 12px; }
.tcard p { font-size: 15.5px; color: var(--charcoal-700); flex: 1; text-wrap: pretty; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; flex: none; }
.tcard .who .nm { font-size: 14.5px; font-weight: 700; color: var(--charcoal-900); }
.tcard .who .rl { font-size: 12.5px; color: var(--muted); }
@media (max-width: 940px) { .tgrid { grid-template-columns: 1fr; } }

/* ---------- FOR BUSINESS ---------- */
.biz { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-900) 100%); color: #fff; position: relative; overflow: hidden; }
.biz::before { content: ""; position: absolute; right: -120px; top: -120px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(0,172,193,.26), transparent 62%); }
.biz .wrap { position: relative; }
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.biz .eyebrow { color: var(--teal-100); }
.biz h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; margin-top: 18px; }
.biz .lead { font-size: 18px; color: rgba(255,255,255,.72); margin: 18px 0 28px; text-wrap: pretty; }
.biz-feats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.biz-feat { display: flex; gap: 14px; align-items: flex-start; }
.biz-feat .bf-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(0,172,193,.18); display: grid; place-items: center; color: var(--teal-100); flex: none; }
.biz-feat .bf-ic svg { width: 21px; height: 21px; }
.biz-feat .bf-t { font-size: 16px; font-weight: 700; }
.biz-feat .bf-s { font-size: 14px; color: rgba(255,255,255,.62); margin-top: 2px; }
.biz-actions { display: flex; flex-wrap: wrap; gap: 13px; }
/* business dashboard mock */
.dash {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-float); overflow: hidden; color: var(--ink);
}
.dash-top { background: var(--slate-100); padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.dash-top .dt-l { display: flex; align-items: center; gap: 11px; }
.dash-top .logo { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: grid; place-items: center; color: #fff; }
.dash-top .logo svg { width: 18px; height: 18px; }
.dash-top .nm { font-size: 14.5px; font-weight: 800; color: var(--charcoal-900); }
.dash-top .nm small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); }
.dash-top .av2 { width: 34px; height: 34px; border-radius: 50%; background-size: cover; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 22px; }
.dash-kpi { background: var(--slate-100); border-radius: 14px; padding: 15px; }
.dash-kpi .k { font-size: 12px; color: var(--muted); font-weight: 600; }
.dash-kpi .v { font-size: 22px; font-weight: 800; color: var(--charcoal-900); margin-top: 4px; letter-spacing: -.02em; }
.dash-kpi .d { font-size: 11.5px; font-weight: 700; color: var(--success); margin-top: 2px; }
.dash-sched { padding: 0 22px 22px; }
.dash-sched .sh { font-size: 13px; font-weight: 800; color: var(--charcoal-900); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.dash-sched .sh em { font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--teal-deep); }
.appt { display: flex; align-items: center; gap: 13px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px; }
.appt .time { font-size: 12.5px; font-weight: 800; color: var(--charcoal-900); width: 56px; flex: none; }
.appt .bar { width: 3px; height: 34px; border-radius: 3px; background: var(--teal); flex: none; }
.appt.alt .bar { background: var(--charcoal-500); }
.appt .info { flex: 1; }
.appt .info .c { font-size: 13.5px; font-weight: 700; color: var(--charcoal-900); }
.appt .info .s { font-size: 12px; color: var(--muted); }
.appt .amt { font-size: 13.5px; font-weight: 800; color: var(--charcoal-900); }
@media (max-width: 940px) { .biz-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- DOWNLOAD CTA ---------- */
.dl { text-align: center; }
.dl-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--r-xl); padding: 64px 40px; position: relative; overflow: hidden;
  box-shadow: var(--sh-float); color: #fff;
}
.dl-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(255,255,255,.22), transparent 60%); }
.dl-card > * { position: relative; }
.dl-card h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.dl-card p { font-size: 18px; color: rgba(255,255,255,.86); margin: 16px auto 30px; max-width: 48ch; }
.dl-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 13px; overflow: hidden; background: #fff; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--sh-card); border-color: var(--teal-100); }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 17px; font-weight: 700; color: var(--charcoal-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 8px; background: var(--teal-50); color: var(--teal-dark); transition: transform .25s, background .2s; }
.faq-item summary .pm svg { width: 16px; height: 16px; }
.faq-item[open] summary .pm { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-item .ans { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; text-wrap: pretty; max-width: 68ch; }

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal-900); color: rgba(255,255,255,.66); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .f-about { font-size: 14.5px; max-width: 34ch; text-wrap: pretty; }
.footer .f-social { display: flex; gap: 11px; margin-top: 20px; }
.footer .f-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background .2s, color .2s; }
.footer .f-social a:hover { background: var(--teal); color: #fff; }
.footer .f-social a svg { width: 18px; height: 18px; }
.footer .f-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer .f-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color .15s; }
.footer .f-col a:hover { color: var(--teal-100); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- placeholder textures ---------- */
.ph { background-color: var(--teal-50); position: relative; overflow: hidden; }
.ph::after {
  content: attr(data-label); position: absolute; left: 12px; bottom: 10px; z-index: 4;
  font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ph-1 { background: linear-gradient(135deg, #B2EBF2, #80DEEA); }
.ph-2 { background: linear-gradient(135deg, #CFD8DC, #B0BEC5); }
.ph-3 { background: linear-gradient(135deg, #80DEEA, #4DD0E1); }
.ph-4 { background: linear-gradient(135deg, #B0BEC5, #90A4AE); }
.ph-5 { background: linear-gradient(135deg, #4DD0E1, #26C6DA); }
.ph-6 { background: linear-gradient(135deg, #90A4AE, #78909C); }
.ph-7 { background: linear-gradient(135deg, #26C6DA, #00ACC1); }
.ph-8 { background: linear-gradient(135deg, #78909C, #607D8B); }
.ph-grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1.4px);
  background-size: 16px 16px;
}
