/*
Theme Name: Glo n Go
Theme URI: https://glongo.co.za
Author: Glo n Go Mobile Hairdressers
Description: Custom WordPress theme for Glo n Go Mobile Hairdressers.
Version: 1.0.0
License: GPL-2.0+
Text Domain: glo-n-go
*/

:root {
  --glo-teal: #00a99d;
  --glo-teal-dark: #008a80;
  --glo-teal-light: #b3e8e3;
  --glo-teal-50: #e6f7f5;
  --glo-teal-100: #c4ebe6;
  --glo-black: #0d0d0f;
  --glo-ink: #1a1a1d;
  --glo-cream: #faf7f2;
  --glo-ivory: #fbf9f5;
  --glo-muted: #6b6b70;
  --glo-border: #e8e2d7;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--glo-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  color: var(--glo-black);
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: var(--glo-black); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--glo-teal); }

img { max-width: 100%; height: auto; display: block; }

.glo-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.glo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.875rem 1.75rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.glo-btn--teal {
  background: var(--glo-teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 169, 157, 0.2);
}
.glo-btn--teal:hover { background: var(--glo-teal-dark); color: #fff; }

.glo-btn--outline {
  border-color: var(--glo-teal);
  color: var(--glo-teal);
  background: transparent;
}
.glo-btn--outline:hover { background: var(--glo-teal); color: #fff; }

.glo-btn--white {
  background: #fff;
  color: var(--glo-teal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.glo-btn--white:hover { background: var(--glo-cream); color: var(--glo-teal-dark); }

/* Header */
.glo-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--glo-border);
  padding: 0.75rem 0;
}

.glo-header__inner { display: flex; align-items: center; justify-content: space-between; }

.glo-logo { display: inline-flex; align-items: center; }
.glo-logo img { display: block; height: 2.25rem; width: auto; }

.glo-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .glo-nav { display: flex; } }

.glo-nav a { font-size: 0.875rem; font-weight: 500; color: var(--glo-muted); }
.glo-nav a:hover { color: var(--glo-teal); }

.glo-header__actions { display: none; gap: 0.75rem; }
@media (min-width: 768px) { .glo-header__actions { display: flex; } }

/* Hero */
.glo-hero { background: #fff; padding-top: 8rem; padding-bottom: 5rem; }
.glo-hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .glo-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

.glo-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(0,169,157,0.3);
  background: var(--glo-teal-50);
  padding: 0.4rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--glo-teal);
}

.glo-hero__title {
  font-size: 2.75rem; font-weight: 900; line-height: 1.05; margin-top: 1.5rem;
}
.glo-hero__title em { font-style: normal; color: var(--glo-teal); }

@media (min-width: 640px) { .glo-hero__title { font-size: 4rem; } }
@media (min-width: 1024px) { .glo-hero__title { font-size: 4.25rem; } }

.glo-hero__subtitle {
  margin-top: 1.5rem; font-size: 1.05rem;
  color: var(--glo-muted); max-width: 32rem; line-height: 1.65;
}

.glo-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.glo-hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; font-size: 0.8125rem; color: var(--glo-muted); }
.glo-hero__trust .star { color: var(--glo-teal); }
.glo-hero__trust strong { color: var(--glo-black); }

.glo-hero__image { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2); }
.glo-hero__image img { width: 100%; height: 520px; object-fit: cover; }

.glo-float {
  position: absolute; background: #fff;
  border-radius: 1rem; padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border: 1px solid var(--glo-border);
}

.glo-float--price { left: -1.5rem; bottom: 2.5rem; width: 13rem; }
.glo-float--price small { display:block; font-size: 0.6875rem; color: var(--glo-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.glo-float--price strong { display:block; font-family: var(--font-heading); font-size: 1.875rem; font-weight: 900; color: var(--glo-teal); margin: 0.25rem 0; }
.glo-float--price span { font-size: 0.75rem; color: var(--glo-muted); }

.glo-float--pros { right: -1rem; top: 2.5rem; display:flex; align-items:center; gap: 0.75rem; padding: 0.875rem; }
.glo-float--pros strong { display:block; font-size: 0.875rem; font-weight: 700; color: var(--glo-black); }
.glo-float--pros span { font-size: 0.6875rem; color: var(--glo-muted); }
.glo-avatars { display:flex; }
.glo-avatars img { width: 2.25rem; height: 2.25rem; border-radius: 9999px; border: 2px solid #fff; object-fit: cover; margin-left: -0.5rem; }
.glo-avatars img:first-child { margin-left: 0; }

/* Stats */
.glo-stats { background: #fff; border-top: 1px solid var(--glo-border); border-bottom: 1px solid var(--glo-border); padding: 3.5rem 0; }
.glo-stats__grid { display: grid; text-align: center; }
@media (min-width: 768px) {
  .glo-stats__grid { grid-template-columns: repeat(3,1fr); }
  .glo-stats__grid > div { border-right: 1px solid var(--glo-border); }
  .glo-stats__grid > div:last-child { border-right: none; }
}
.glo-stats__val { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 900; color: var(--glo-black); }
.glo-stats__label { font-size: 0.8125rem; color: var(--glo-muted); margin-top: 0.25rem; }

/* Section */
.glo-section { padding: 6rem 0; }
.glo-section--teal-50 { background: var(--glo-teal-50); }
.glo-section--teal { background: var(--glo-teal); color: #fff; }
.glo-section--teal h2, .glo-section--teal h3 { color: #fff; }

.glo-section__head { max-width: 42rem; }
.glo-section__eyebrow {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--glo-teal);
}
.glo-section--teal .glo-section__eyebrow { color: var(--glo-teal-light); }
.glo-section__title { font-size: 2.5rem; font-weight: 900; margin-top: 0.75rem; }
@media (min-width: 640px) { .glo-section__title { font-size: 3rem; } }

/* Services & pricing */
.glo-services__head { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; }
@media (min-width: 768px) { .glo-services__head { flex-direction: row; align-items: flex-end; } }
.glo-services__note { max-width: 20rem; font-size: 0.8125rem; color: var(--glo-muted); line-height: 1.6; }

.glo-service { display: grid; gap: 2.5rem; align-items: center; margin-top: 5rem; }
@media (min-width: 1024px) { .glo-service { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.glo-service--flip > :first-child { order: 2; }

.glo-service__image { background: var(--glo-cream); border-radius: 1rem; overflow: hidden; }
.glo-service__image img { width: 100%; height: 24rem; object-fit: cover; }

.glo-service__num { font-size: 0.75rem; font-weight: 700; color: var(--glo-teal); }
.glo-service__title { font-size: 1.75rem; font-weight: 700; margin: 0.25rem 0 1.5rem; }

.glo-price-list { border: 1px solid var(--glo-border); border-radius: 0.75rem; overflow: hidden; }
.glo-price-list__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 1rem; font-size: 0.875rem;
  border-bottom: 1px solid var(--glo-border);
}
.glo-price-list__row:last-child { border-bottom: none; }
.glo-price-list__name { color: var(--glo-ink); }
.glo-price-list__price { font-weight: 600; color: var(--glo-black); white-space: nowrap; }
.glo-price-list__price small { color: var(--glo-muted); font-weight: 400; margin-right: 0.25rem; }

/* Steps */
.glo-steps__grid { display: grid; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) { .glo-steps__grid { grid-template-columns: repeat(3,1fr); } }
.glo-step { background: #fff; border: 1px solid var(--glo-border); border-radius: 1rem; padding: 2rem; }
.glo-step__num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--glo-teal); opacity: 0.3; line-height: 1; }
.glo-step__title { font-size: 1.5rem; font-weight: 700; margin-top: 1rem; }
.glo-step__text { font-size: 0.875rem; color: var(--glo-muted); margin-top: 0.75rem; line-height: 1.65; }

/* Testimonials */
.glo-testimonials__grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .glo-testimonials__grid { grid-template-columns: repeat(3,1fr); } }
.glo-testimonial { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 1rem; padding: 2rem; }
.glo-stars { color: var(--glo-teal-light); letter-spacing: 2px; }
.glo-testimonial blockquote { margin: 1.25rem 0 0; font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.9); }
.glo-testimonial figcaption { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.8125rem; }
.glo-testimonial figcaption strong { color: #fff; display: block; font-weight: 600; }
.glo-testimonial figcaption span { color: rgba(255,255,255,0.7); }

/* Pro CTA */
.glo-pro-card {
  background: var(--glo-teal-dark);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #fff;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .glo-pro-card { grid-template-columns: 1fr 1fr; padding: 4rem; }
}
.glo-pro-card h2 { color: #fff; font-size: 2.5rem; }
.glo-pro-card p { color: rgba(255,255,255,0.85); margin-top: 1.25rem; max-width: 28rem; }

.glo-pro-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.glo-pro-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.75rem;
}
.glo-pro-list li::before { content: '✓'; color: var(--glo-teal-light); font-weight: 700; }

.glo-pro__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
.glo-pro__image { border-radius: 1rem; overflow: hidden; }
.glo-pro__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Footer */
.glo-footer { background: var(--glo-ivory); border-top: 1px solid var(--glo-border); padding: 4rem 0 2rem; }
.glo-footer__grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .glo-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.glo-footer__logo { display: inline-flex; align-items: center; }
.glo-footer__logo img { display: block; height: 3rem; width: auto; }
.glo-footer__desc { margin-top: 1rem; font-size: 0.875rem; color: var(--glo-muted); max-width: 24rem; }
.glo-footer__contact { margin-top: 1.5rem; font-size: 0.8125rem; color: var(--glo-muted); }
.glo-footer__contact strong { color: var(--glo-black); display: block; margin-bottom: 0.25rem; }

.glo-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--glo-black); margin-bottom: 1rem;
}
.glo-footer ul { list-style: none; padding: 0; margin: 0; }
.glo-footer ul li { margin-bottom: 0.625rem; }
.glo-footer ul a { font-size: 0.875rem; color: var(--glo-muted); }
.glo-footer ul a:hover { color: var(--glo-teal); }

.glo-footer__bottom {
  margin-top: 3.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--glo-border);
  display: flex; flex-direction: column; gap: 1rem;
  font-size: 0.75rem; color: var(--glo-muted);
  align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .glo-footer__bottom { flex-direction: row; } }
.glo-footer__legal { display: flex; gap: 1.25rem; }
.glo-footer__legal a:hover { color: var(--glo-teal); }

.glo-cta-center { text-align: center; margin-top: 5rem; }

/* ============================================================
   HERO — ProCompare style with inline form
   ============================================================ */
.glo-hero { padding: 80px 0 60px; background: #fff; }
.glo-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.glo-hero__badge { display: inline-flex; background: var(--glo-teal-50); color: var(--glo-teal); font-size: .8125rem; font-weight: 600; padding: 6px 14px; border-radius: 9999px; margin-bottom: 20px; }
.glo-hero__title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 16px; }
.glo-hero__title em { font-style: normal; color: var(--glo-teal); }
.glo-hero__subtitle { font-size: 1.0625rem; color: var(--glo-muted); line-height: 1.7; margin: 0 0 24px; }
.glo-hero__trust { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.glo-hero__trust span { font-size: .875rem; color: var(--glo-ink); font-weight: 500; }
.glo-hero__stats { display: flex; gap: 32px; }
.glo-hero__stats div { display: flex; flex-direction: column; }
.glo-hero__stats strong { font-size: 1.5rem; font-weight: 800; color: var(--glo-teal); font-family: var(--font-heading); }
.glo-hero__stats span { font-size: .75rem; color: var(--glo-muted); }

/* Hero form card */
.glo-hero__form-card { background: #fff; border: 1.5px solid var(--glo-border); border-radius: 1.5rem; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.glo-hero__form-title { font-size: 1.375rem; margin: 0 0 6px; }
.glo-hero__form-sub { font-size: .875rem; color: var(--glo-muted); margin: 0 0 24px; }
.glo-hero-form { display: flex; flex-direction: column; gap: 14px; }
.glo-hero-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.glo-hero-form__note { font-size: .75rem; color: var(--glo-muted); text-align: center; margin: 8px 0 0; }

/* Hero success state */
.glo-hero-success { text-align: center; padding: 8px 0; }
.glo-hero-success__icon { font-size: 3rem; margin-bottom: 12px; }
.glo-hero-success h3 { font-size: 1.5rem; margin: 0 0 8px; }
.glo-hero-success p { color: var(--glo-muted); font-size: .9375rem; }
.glo-hero-success__stylists { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0; }

@media (max-width: 860px) {
  .glo-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .glo-hero__form-wrap { order: -1; }
  .glo-hero-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.glo-section--cream { background: var(--glo-cream); }
.glo-text-center { text-align: center; }
.glo-section__sub { font-size: 1.0625rem; color: var(--glo-muted); margin: 8px 0 0; max-width: 560px; margin-left: auto; margin-right: auto; }
.glo-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.glo-step { background: #fff; border-radius: 1.25rem; padding: 32px 28px; border: 1px solid var(--glo-border); position: relative; }
.glo-step__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.glo-step__num { font-size: 3rem; font-weight: 800; color: var(--glo-teal-50); font-family: var(--font-heading); line-height: 1; margin-bottom: 12px; display: block; }
.glo-step__title { font-size: 1.125rem; font-weight: 700; margin: 0 0 10px; }
.glo-step__text { font-size: .9rem; color: var(--glo-muted); line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .glo-steps__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.glo-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.glo-service-tile { background: #fff; border: 1px solid var(--glo-border); border-radius: 1.25rem; padding: 24px; cursor: pointer; transition: box-shadow .2s, border-color .2s, transform .2s; }
.glo-service-tile:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--glo-teal); transform: translateY(-2px); }
.glo-service-tile__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.glo-service-tile__name { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.glo-service-tile__price { font-size: .8125rem; font-weight: 600; color: var(--glo-teal); margin: 0 0 8px; }
.glo-service-tile__desc { font-size: .8125rem; color: var(--glo-muted); line-height: 1.5; margin: 0 0 12px; }
.glo-service-tile__cta { font-size: .8125rem; font-weight: 600; color: var(--glo-teal); }

/* ============================================================
   STYLIST GRID
   ============================================================ */
.glo-stylist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; padding: 24px 0; }
.glo-stylist-card { background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .25s,border-color .25s; }
.glo-stylist-card:hover { box-shadow:0 20px 40px rgba(0,0,0,0.08); border-color:var(--glo-teal); }
.glo-stylist-card__banner { height:100px; background-size:cover; background-position:center; }
.glo-stylist-card__body { padding:0 1.25rem 1.25rem; flex:1; display:flex; flex-direction:column; gap:8px; }
.glo-stylist-card__avatar { width:60px; height:60px; border-radius:50%; background:var(--glo-teal); color:#fff; font-weight:700; font-size:20px; display:flex; align-items:center; justify-content:center; margin:-30px 0 10px; border:3px solid #fff; box-shadow:0 4px 12px rgba(0,0,0,0.1); overflow:hidden; }
.glo-stylist-card__avatar.has-photo { background:transparent; }
.glo-stylist-card__avatar img { width:100%; height:100%; object-fit:cover; }
.glo-stylist-card__name { font-size:1rem; font-weight:700; color:var(--glo-black); margin:0; }
.glo-stylist-card__area { font-size:.8rem; color:var(--glo-muted); margin:0; }
.glo-stylist-card__tags { display:flex; flex-wrap:wrap; gap:5px; }
.glo-stylist-card__bio { font-size:.8375rem; color:var(--glo-muted); line-height:1.5; flex:1; margin:0; }
.glo-stylist-card__actions { display:flex; gap:8px; flex-wrap:wrap; margin-top:4px; }

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.glo-tag { display:inline-flex; align-items:center; padding:3px 10px; border-radius:9999px; font-size:.75rem; font-weight:500; background:var(--glo-teal-50); color:var(--glo-teal); }
.glo-tag--green { background:#e6f7f0; color:#1a6645; }
.glo-tag--red { background:#fdf0f0; color:#8b2020; }
.glo-tag--teal { background:var(--glo-teal-50); color:var(--glo-teal); }
.glo-btn--sm { padding:.5rem 1.125rem; font-size:.8125rem; }
.glo-btn--lg { padding:1rem 2.25rem; font-size:1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.glo-testimonials__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.glo-testimonial { background:rgba(255,255,255,0.12); border-radius:1.25rem; padding:28px; margin:0; }
.glo-stars { color:#FFD700; font-size:1rem; margin-bottom:14px; }
.glo-testimonial blockquote { font-size:.9375rem; line-height:1.7; color:rgba(255,255,255,0.92); margin:0 0 16px; font-style:italic; }
.glo-testimonial figcaption strong { display:block; color:#fff; font-size:.9rem; }
.glo-testimonial figcaption span { color:rgba(255,255,255,0.6); font-size:.8125rem; }
@media(max-width:700px){ .glo-testimonials__grid { grid-template-columns:1fr; } }

/* ============================================================
   FOR STYLISTS CARD
   ============================================================ */
.glo-pro-card { display:grid; grid-template-columns:1fr 400px; gap:64px; align-items:center; background:var(--glo-teal); border-radius:2rem; padding:56px; overflow:hidden; }
.glo-pro-card__content h2 { font-size:clamp(1.5rem,3vw,2.25rem); color:#fff; margin:12px 0 16px; }
.glo-pro-card__content p { color:rgba(255,255,255,0.8); font-size:1rem; line-height:1.7; margin-bottom:24px; }
.glo-pro-list { list-style:none; padding:0; margin:0 0 32px; display:flex; flex-direction:column; gap:10px; }
.glo-pro-list li { font-size:.9375rem; color:rgba(255,255,255,0.9); }
.glo-pro__actions { display:flex; gap:12px; flex-wrap:wrap; }
.glo-pro__image img { width:100%; height:420px; object-fit:cover; border-radius:1.25rem; }
.glo-btn--white { background:#fff; color:var(--glo-teal); }
.glo-btn--white:hover { background:var(--glo-cream); }
@media(max-width:900px){ .glo-pro-card { grid-template-columns:1fr; padding:36px; } .glo-pro__image { display:none; } }

/* ============================================================
   FORMS (shared)
   ============================================================ */
.glo-form-field { display:flex; flex-direction:column; gap:5px; }
.glo-form-field label { font-size:.8125rem; font-weight:600; color:var(--glo-ink); }
.glo-form-field input, .glo-form-field select, .glo-form-field textarea { width:100%; border:1.5px solid var(--glo-border); border-radius:.75rem; padding:10px 14px; font-size:.9375rem; font-family:var(--font-body); color:var(--glo-ink); background:#fff; transition:border-color .2s; }
.glo-form-field input:focus, .glo-form-field select:focus, .glo-form-field textarea:focus { border-color:var(--glo-teal); outline:none; box-shadow:0 0 0 3px rgba(0,169,157,0.1); }
.glo-form-error { background:#fdf0f0; border:1px solid #f0b8b8; color:#8b2020; border-radius:.75rem; padding:12px 16px; font-size:.875rem; }
.glo-form-hint { font-size:.8125rem; color:var(--glo-muted); margin:0 0 8px; }
.glo-file-input { border:none !important; padding:0 !important; font-size:.875rem !important; }

/* ============================================================
   REQUEST FORM PAGE
   ============================================================ */
.glo-request-form-wrap { max-width:720px; margin:0 auto; padding:40px 0 80px; }
.glo-request-form__intro { margin-bottom:2rem; }
.glo-request-form__intro h2 { font-size:2rem; margin-bottom:.5rem; }
.glo-request-form__intro p { color:var(--glo-muted); }
.glo-request-form { display:flex; flex-direction:column; gap:20px; }
.glo-form-row { display:flex; flex-direction:column; gap:16px; }
.glo-form-row--2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px){ .glo-form-row--2 { grid-template-columns:1fr; } }
.glo-form-submit { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.glo-form-note { font-size:.8125rem; color:var(--glo-muted); margin:0; }
.glo-request-success { max-width:560px; margin:60px auto; text-align:center; padding:48px 32px; background:#fff; border:1px solid var(--glo-border); border-radius:1.5rem; }
.glo-request-success__icon { font-size:3rem; margin-bottom:16px; }
.glo-request-success h2 { font-size:2rem; margin-bottom:12px; }
.glo-request-success__stylists { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:16px 0; }
.glo-wa-btn { display:inline-flex; align-items:center; gap:8px; background:#25D366; color:#fff !important; padding:10px 20px; border-radius:9999px; font-size:.875rem; font-weight:600; text-decoration:none; }
.glo-wa-btn:hover { background:#1ebe5d; }

/* ============================================================
   STYLIST DASHBOARD
   ============================================================ */
.glo-dash { max-width:900px; margin:0 auto; padding:40px 0 80px; }
.glo-dash-gate { text-align:center; padding:60px 20px; }
.glo-dash-header { display:flex; align-items:center; gap:20px; background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; padding:24px 28px; margin-bottom:24px; }
.glo-dash-header__avatar { width:72px; height:72px; border-radius:50%; background:var(--glo-teal); color:#fff; font-weight:700; font-size:24px; display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; border:3px solid var(--glo-teal-50); }
.glo-dash-header__avatar.has-photo { background:transparent; }
.glo-dash-header__avatar img { width:100%; height:100%; object-fit:cover; }
.glo-dash-header__info h2 { font-size:1.25rem; margin:0 0 4px; }
.glo-dash-header__info p { font-size:.875rem; color:var(--glo-muted); margin:0 0 10px; }
.glo-dash-header__meta { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.glo-dash-header__view { font-size:.8125rem; color:var(--glo-teal); font-weight:500; }
.glo-dash-tabs { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:20px; }
.glo-dash-tab { font-size:.8125rem; font-weight:500; padding:8px 16px; border-radius:9999px; border:1px solid var(--glo-border); color:var(--glo-muted); text-decoration:none; transition:all .2s; }
.glo-dash-tab:hover { color:var(--glo-teal); border-color:var(--glo-teal); }
.glo-dash-tab.is-active { background:var(--glo-teal); color:#fff; border-color:var(--glo-teal); }
.glo-notice { padding:14px 18px; border-radius:.875rem; margin-bottom:16px; font-size:.875rem; }
.glo-notice--success { background:#e6f7f0; color:#1a6645; border:1px solid #a8dfc2; }
.glo-notice--error { background:#fdf0f0; color:#8b2020; border:1px solid #f0b8b8; }
.glo-notice--warn { background:#fffbe6; color:#7a5c00; border:1px solid #fde68a; }
.glo-notice--warn a { color:var(--glo-teal); font-weight:600; }
.glo-dash-form { display:flex; flex-direction:column; gap:20px; }
.glo-dash-section { background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; padding:28px; }
.glo-dash-section h3 { font-size:1rem; font-weight:700; margin:0 0 20px; padding-bottom:14px; border-bottom:1px solid var(--glo-border); font-family:var(--font-body); }
.glo-dash-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.glo-dash-empty { text-align:center; padding:48px 20px; color:var(--glo-muted); font-size:.9375rem; background:var(--glo-cream); border-radius:1rem; }
.glo-dash-current-img { display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.glo-dash-current-img img { width:80px; height:80px; border-radius:50%; object-fit:cover; }
.glo-dash-current-banner img { width:100%; max-height:120px; object-fit:cover; border-radius:.875rem; margin-bottom:16px; }
.glo-gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px; margin-bottom:20px; }
.glo-gallery-grid__item { position:relative; border-radius:.75rem; overflow:hidden; aspect-ratio:1; }
.glo-gallery-grid__item img { width:100%; height:100%; object-fit:cover; display:block; }
.glo-gallery-del-btn { position:absolute; top:5px; right:5px; background:rgba(0,0,0,0.6); color:#fff; border:none; border-radius:50%; width:24px; height:24px; font-size:12px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.glo-gallery-previews { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.glo-gallery-previews img { width:72px; height:72px; object-fit:cover; border-radius:.5rem; }
.glo-gallery-grid__del-form { position:absolute; top:0; right:0; }
.glo-file-preview img { max-height:140px; border-radius:.75rem; margin-top:10px; }
.glo-file-preview span { display:block; font-size:.75rem; color:var(--glo-muted); margin-top:4px; }
.glo-requests-list { display:flex; flex-direction:column; gap:16px; }
.glo-request-card { background:#fff; border:1px solid var(--glo-border); border-radius:1rem; padding:20px; }
.glo-request-card__head { display:flex; justify-content:space-between; gap:12px; margin-bottom:12px; }
.glo-request-card__head strong { font-size:1rem; font-weight:700; display:block; margin-bottom:6px; }
.glo-request-card__date { font-size:.75rem; color:var(--glo-muted); white-space:nowrap; }
.glo-request-card__meta { display:flex; flex-wrap:wrap; gap:12px; font-size:.8125rem; color:var(--glo-muted); margin-bottom:12px; }
.glo-request-card__notes { font-size:.875rem; color:var(--glo-muted); padding:12px; background:var(--glo-cream); border-radius:.625rem; margin-bottom:12px; }
.glo-request-card__actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.glo-request-card__phone { font-size:.875rem; color:var(--glo-muted); }
.glo-sub-card { border-radius:1.25rem; padding:28px; border:1px solid var(--glo-border); }
.glo-sub-card--active { background:var(--glo-teal-50); border-color:var(--glo-teal); }
.glo-sub-card--inactive { background:#fdf6f6; border-color:#f0b8b8; }
.glo-sub-card__status { display:flex; align-items:center; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.glo-sub-card__status strong { font-size:1.125rem; }
.glo-sub-badge { padding:4px 12px; border-radius:9999px; font-size:.75rem; font-weight:700; background:var(--glo-teal); color:#fff; }
.glo-sub-badge--off { background:#e0e0e0; color:#666; }
.glo-sub-card__stats { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; }
.glo-sub-card__stats div { background:#fff; border-radius:.875rem; padding:16px 8px; text-align:center; }
.glo-sub-card__stats span { display:block; font-size:2rem; font-weight:800; color:var(--glo-teal); }
.glo-sub-card__stats small { font-size:.75rem; color:var(--glo-muted); }
.glo-sub-perks { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.glo-sub-perks li { font-size:.9rem; }
.glo-profile-gallery { margin-top:48px; }
.glo-profile-gallery h2 { font-size:1.5rem; margin-bottom:20px; }
.glo-profile-gallery__grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:10px; }
.glo-profile-gallery__item img { width:100%; aspect-ratio:1; object-fit:cover; border-radius:.875rem; }

/* Subscribe page */
.glo-subscribe-page { max-width:560px; margin:60px auto; padding:0 20px 80px; text-align:center; }
.glo-subscribe-hero { margin-bottom:32px; }
.glo-subscribe-hero h1 { font-size:2.25rem; margin-bottom:12px; }
.glo-subscribe-hero p { color:var(--glo-muted); }
.glo-subscribe-card { background:#fff; border:1px solid var(--glo-border); border-radius:1.5rem; padding:36px; margin-bottom:24px; }
.glo-subscribe-card__price { margin-bottom:24px; }
.glo-subscribe-card__amount { font-size:3.5rem; font-weight:800; color:var(--glo-teal); line-height:1; font-family:var(--font-heading); }
.glo-subscribe-card__period { font-size:1.125rem; color:var(--glo-muted); }
.glo-subscribe-card .glo-sub-perks { text-align:left; }
.glo-subscribe-note { font-size:.875rem; color:var(--glo-muted); }
.glo-subscribe-note a { color:var(--glo-teal); }

/* ============================================================
   STYLIST GRID
   ============================================================ */
.glo-stylist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; padding: 40px 0; }
.glo-stylist-card { background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .25s,border-color .25s; }
.glo-stylist-card:hover { box-shadow:0 20px 40px rgba(0,0,0,0.08); border-color:var(--glo-teal-light); }
.glo-stylist-card__banner { height:110px; background-size:cover; background-position:center; }
.glo-stylist-card__body { padding:0 1.5rem 1.5rem; flex:1; display:flex; flex-direction:column; gap:8px; }
.glo-stylist-card__avatar { width:64px; height:64px; border-radius:50%; background:var(--glo-teal); color:#fff; font-weight:700; font-size:22px; display:flex; align-items:center; justify-content:center; margin:-32px 0 12px; border:3px solid #fff; box-shadow:0 4px 12px rgba(0,0,0,0.1); overflow:hidden; flex-shrink:0; }
.glo-stylist-card__avatar.has-photo { background:transparent; }
.glo-stylist-card__avatar img { width:100%; height:100%; object-fit:cover; }
.glo-stylist-card__name { font-size:1.1rem; font-weight:700; color:var(--glo-black); margin:0; }
.glo-stylist-card__area { font-size:.8125rem; color:var(--glo-muted); margin:0; }
.glo-stylist-card__tags { display:flex; flex-wrap:wrap; gap:6px; }
.glo-stylist-card__bio { font-size:.875rem; color:var(--glo-muted); line-height:1.6; flex:1; margin:0; }
.glo-stylist-card__actions { display:flex; gap:8px; flex-wrap:wrap; margin-top:4px; }
.glo-btn--sm { padding:.5rem 1.125rem; font-size:.8125rem; }
.glo-btn--lg { padding:1rem 2.25rem; font-size:1rem; }
.glo-tag { display:inline-flex; align-items:center; padding:3px 10px; border-radius:9999px; font-size:.75rem; font-weight:500; background:var(--glo-teal-50); color:var(--glo-teal-dark,#008a80); }
.glo-tag--green { background:#e6f7f0; color:#1a6645; }
.glo-tag--red { background:#fdf0f0; color:#8b2020; }
.glo-tag--teal { background:var(--glo-teal-50); color:var(--glo-teal); }

/* ============================================================
   REQUEST FORM
   ============================================================ */
.glo-request-form-wrap { max-width:720px; margin:0 auto; padding:40px 0 80px; }
.glo-request-form__intro { margin-bottom:2rem; }
.glo-request-form__intro h2 { font-size:2rem; margin-bottom:.5rem; }
.glo-request-form__intro p { color:var(--glo-muted); font-size:1rem; }
.glo-request-form { display:flex; flex-direction:column; gap:20px; }
.glo-form-row { display:flex; flex-direction:column; gap:16px; }
.glo-form-row--2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px){ .glo-form-row--2 { grid-template-columns:1fr; } }
.glo-form-field { display:flex; flex-direction:column; gap:6px; }
.glo-form-field label { font-size:.8125rem; font-weight:600; color:var(--glo-ink); }
.glo-form-field label span { color:var(--glo-teal); }
.glo-form-field input, .glo-form-field select, .glo-form-field textarea { width:100%; border:1.5px solid var(--glo-border); border-radius:.75rem; padding:10px 14px; font-size:.9375rem; font-family:var(--font-body); color:var(--glo-ink); background:#fff; transition:border-color .2s; }
.glo-form-field input:focus, .glo-form-field select:focus, .glo-form-field textarea:focus { border-color:var(--glo-teal); outline:none; box-shadow:0 0 0 3px rgba(0,169,157,0.1); }
.glo-form-field textarea { resize:vertical; }
.glo-form-hint { font-size:.8125rem; color:var(--glo-muted); margin:0 0 8px; }
.glo-form-error { background:#fdf0f0; border:1px solid #f0b8b8; color:#8b2020; border-radius:.75rem; padding:12px 16px; font-size:.875rem; margin-bottom:8px; }
.glo-form-submit { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.glo-form-note { font-size:.8125rem; color:var(--glo-muted); margin:0; }
.glo-file-input { border:none !important; padding:0 !important; font-size:.875rem !important; }
.glo-file-preview img { max-height:160px; border-radius:.75rem; margin-top:10px; }
.glo-file-preview span { display:block; font-size:.75rem; color:var(--glo-muted); margin-top:4px; }

/* Request success */
.glo-request-success { max-width:560px; margin:60px auto; text-align:center; padding:48px 32px; background:#fff; border:1px solid var(--glo-border); border-radius:1.5rem; }
.glo-request-success__icon { font-size:3rem; margin-bottom:16px; }
.glo-request-success h2 { font-size:2rem; margin-bottom:12px; }
.glo-request-success p { color:var(--glo-muted); }
.glo-request-success__hint { margin-top:24px; font-weight:600; color:var(--glo-ink); }
.glo-request-success__stylists { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:16px 0 24px; }
.glo-wa-btn { display:inline-flex; align-items:center; gap:8px; background:#25D366; color:#fff !important; padding:10px 20px; border-radius:9999px; font-size:.875rem; font-weight:600; text-decoration:none; }
.glo-wa-btn:hover { background:#1ebe5d; color:#fff; }

/* ============================================================
   STYLIST DASHBOARD
   ============================================================ */
.glo-dash { max-width:900px; margin:0 auto; padding:40px 0 80px; }
.glo-dash-gate { text-align:center; padding:60px 20px; }

.glo-dash-header { display:flex; align-items:center; gap:20px; background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; padding:24px 28px; margin-bottom:24px; }
.glo-dash-header__avatar { width:72px; height:72px; border-radius:50%; background:var(--glo-teal); color:#fff; font-weight:700; font-size:24px; display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; border:3px solid var(--glo-teal-100); }
.glo-dash-header__avatar.has-photo { background:transparent; }
.glo-dash-header__avatar img { width:100%; height:100%; object-fit:cover; }
.glo-dash-header__info h2 { font-size:1.25rem; margin:0 0 4px; }
.glo-dash-header__info p { font-size:.875rem; color:var(--glo-muted); margin:0 0 10px; }
.glo-dash-header__meta { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.glo-dash-header__view { font-size:.8125rem; color:var(--glo-teal); font-weight:500; }

.glo-dash-tabs { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:20px; }
.glo-dash-tab { font-size:.8125rem; font-weight:500; padding:8px 16px; border-radius:9999px; border:1px solid var(--glo-border); color:var(--glo-muted); text-decoration:none; transition:all .2s; }
.glo-dash-tab:hover { color:var(--glo-teal); border-color:var(--glo-teal); }
.glo-dash-tab.is-active { background:var(--glo-teal); color:#fff; border-color:var(--glo-teal); }

.glo-notice { padding:14px 18px; border-radius:.875rem; margin-bottom:16px; font-size:.875rem; }
.glo-notice--success { background:#e6f7f0; color:#1a6645; border:1px solid #a8dfc2; }
.glo-notice--error { background:#fdf0f0; color:#8b2020; border:1px solid #f0b8b8; }
.glo-notice--warn { background:#fffbe6; color:#7a5c00; border:1px solid #fde68a; }
.glo-notice--warn a { color:var(--glo-teal); font-weight:600; }

.glo-dash-form { display:flex; flex-direction:column; gap:20px; }
.glo-dash-section { background:#fff; border:1px solid var(--glo-border); border-radius:1.25rem; padding:28px; }
.glo-dash-section h3 { font-size:1rem; font-weight:700; margin:0 0 20px; padding-bottom:14px; border-bottom:1px solid var(--glo-border); font-family:var(--font-body); }
.glo-dash-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.glo-dash-empty { text-align:center; padding:48px 20px; color:var(--glo-muted); font-size:.9375rem; background:var(--glo-cream); border-radius:1rem; }
.glo-dash-current-img { display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.glo-dash-current-img img { width:80px; height:80px; border-radius:50%; object-fit:cover; border:3px solid var(--glo-teal-100); }
.glo-dash-current-banner { margin-bottom:16px; }
.glo-dash-current-banner img { width:100%; max-height:120px; object-fit:cover; border-radius:.875rem; }

/* Gallery */
.glo-gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; margin-bottom:20px; }
.glo-gallery-grid__item { position:relative; border-radius:.875rem; overflow:hidden; aspect-ratio:1; }
.glo-gallery-grid__item img { width:100%; height:100%; object-fit:cover; display:block; }
.glo-gallery-del-btn { position:absolute; top:6px; right:6px; background:rgba(0,0,0,0.6); color:#fff; border:none; border-radius:50%; width:26px; height:26px; font-size:13px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.glo-gallery-del-btn:hover { background:rgba(200,0,0,0.85); }
.glo-gallery-previews { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.glo-gallery-previews img { width:80px; height:80px; object-fit:cover; border-radius:.5rem; }
.glo-gallery-grid__del-form { position:absolute; top:0; right:0; }

/* Requests list */
.glo-requests-list { display:flex; flex-direction:column; gap:16px; }
.glo-request-card { background:#fff; border:1px solid var(--glo-border); border-radius:1rem; padding:20px; }
.glo-request-card__head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.glo-request-card__head strong { font-size:1rem; font-weight:700; display:block; margin-bottom:6px; }
.glo-request-card__date { font-size:.75rem; color:var(--glo-muted); white-space:nowrap; }
.glo-request-card__meta { display:flex; flex-wrap:wrap; gap:12px; font-size:.8125rem; color:var(--glo-muted); margin-bottom:12px; }
.glo-request-card__notes { font-size:.875rem; color:var(--glo-muted); padding:12px; background:var(--glo-cream); border-radius:.625rem; margin-bottom:12px; }
.glo-request-card__actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.glo-request-card__phone { font-size:.875rem; color:var(--glo-muted); }

/* Subscription */
.glo-sub-card { border-radius:1.25rem; padding:28px; border:1px solid var(--glo-border); }
.glo-sub-card--active { background:var(--glo-teal-50); border-color:var(--glo-teal-100); }
.glo-sub-card--inactive { background:#fdf0f0; border-color:#f0b8b8; }
.glo-sub-card__status { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.glo-sub-card__status strong { font-size:1.125rem; }
.glo-sub-badge { display:inline-flex; padding:4px 12px; border-radius:9999px; font-size:.75rem; font-weight:700; background:var(--glo-teal); color:#fff; }
.glo-sub-badge--off { background:#e0e0e0; color:#666; }
.glo-sub-card__stats { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; text-align:center; }
.glo-sub-card__stats div { background:#fff; border-radius:.875rem; padding:16px 8px; }
.glo-sub-card__stats span { display:block; font-size:2rem; font-weight:800; color:var(--glo-teal); font-family:var(--font-heading); }
.glo-sub-card__stats small { font-size:.75rem; color:var(--glo-muted); }
.glo-sub-perks { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.glo-sub-perks li { font-size:.9rem; color:var(--glo-ink); }

/* Public profile gallery */
.glo-profile-gallery { margin-top:48px; }
.glo-profile-gallery h2 { font-size:1.5rem; margin-bottom:20px; }
.glo-profile-gallery__grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:12px; }
.glo-profile-gallery__item img { width:100%; aspect-ratio:1; object-fit:cover; border-radius:.875rem; transition:opacity .2s; }
.glo-profile-gallery__item:hover img { opacity:.9; }

/* ============================================================
   LANDING PAGE — glp- namespace
   ============================================================ */

/* ── Hero ── */
.glp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.glp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glp-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.glp-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
}
.glp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}
.glp-badge {
  display: inline-flex;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.glp-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 16px;
  font-family: var(--font-heading);
}
.glp-hero__title em { font-style: normal; color: var(--glo-teal); }
.glp-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0 0 28px; }
.glp-hero__trust { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.glp-hero__trust span { font-size: .875rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.glp-hero__stats { display: flex; gap: 32px; }
.glp-hero__stats div { display: flex; flex-direction: column; }
.glp-hero__stats strong { font-size: 1.625rem; font-weight: 800; color: #fff; font-family: var(--font-heading); line-height: 1; }
.glp-hero__stats small { font-size: .75rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Form card */
.glp-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.glp-form-card__title { font-size: 1.375rem; font-weight: 700; margin: 0 0 6px; }
.glp-form-card__sub { font-size: .875rem; color: var(--glo-muted); margin: 0 0 24px; }
.glp-form { display: flex; flex-direction: column; gap: 14px; }
.glp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.glp-form__submit { width: 100%; margin-top: 4px; }
.glp-form__note { font-size: .75rem; color: var(--glo-muted); text-align: center; margin: 8px 0 0; }

/* Success state */
.glp-success { text-align: center; padding: 8px 0; }
.glp-success__icon { font-size: 3rem; margin-bottom: 12px; }
.glp-success h3 { font-size: 1.375rem; margin: 0 0 8px; }
.glp-success p { color: var(--glo-muted); }
.glp-success__btns { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }

@media (max-width: 900px) {
  .glp-hero__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 80px; padding-bottom: 48px; }
  .glp-hero { min-height: auto; }
  .glp-form-card { padding: 24px 20px; }
  .glp-form__row { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Photo strip ── */
.glp-photo-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 32px 0;
  background: var(--glo-ink);
}
.glp-photo-strip::-webkit-scrollbar { display: none; }
.glp-photo-strip__track {
  display: flex;
  gap: 12px;
  padding: 0 24px;
  width: max-content;
}
.glp-photo-strip__item {
  position: relative;
  width: 200px;
  height: 260px;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.glp-photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.glp-photo-strip__item:hover img { transform: scale(1.05); }
.glp-photo-strip__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: 20px 12px 12px;
}
@media (max-width: 767px) {
  .glp-photo-strip__item { width: 160px; height: 210px; }
}

/* ── Section shared ── */
.glp-section { padding: 80px 0; }
.glp-section--cream { background: var(--glo-cream); }
.glp-section--teal { background: var(--glo-teal); }
.glp-section-head { margin-bottom: 48px; }
.glp-section-head__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin: 8px 0 12px; font-family: var(--font-heading); }
.glp-section-head__sub { font-size: 1.0625rem; color: var(--glo-muted); margin: 0; }
.glp-text-center { text-align: center; }
.glp-text-center .glp-section-head { text-align: center; }
.glp-text-center .glp-section-head__sub { max-width: 560px; margin: 0 auto; }

/* ── How it works ── */
.glp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.glp-step {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--glo-border);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.glp-step:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.glp-step__img { height: 180px; overflow: hidden; }
.glp-step__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.glp-step:hover .glp-step__img img { transform: scale(1.05); }
.glp-step__body { padding: 20px 24px 28px; }
.glp-step__num { display: inline-block; font-size: 2.5rem; font-weight: 800; color: var(--glo-teal-50); font-family: var(--font-heading); line-height: 1; margin-bottom: 8px; }
.glp-step__title { font-size: 1.125rem; font-weight: 700; margin: 0 0 8px; }
.glp-step__text { font-size: .9rem; color: var(--glo-muted); line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .glp-steps { grid-template-columns: 1fr; gap: 16px; } }

/* ── Services grid with images ── */
.glp-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.glp-svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--glo-border);
  border-radius: 1.125rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.glp-svc:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: var(--glo-teal); }
.glp-svc:active { transform: scale(0.97); }
.glp-svc__img { height: 140px; overflow: hidden; }
.glp-svc__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.glp-svc:hover .glp-svc__img img { transform: scale(1.08); }
.glp-svc__body { padding: 14px 16px 8px; flex: 1; }
.glp-svc__name { font-size: .9375rem; font-weight: 700; color: var(--glo-ink); margin: 0 0 4px; }
.glp-svc__price { font-size: .8125rem; font-weight: 600; color: var(--glo-teal); margin: 0; }
.glp-svc__arrow { padding: 8px 16px 14px; font-size: .875rem; font-weight: 600; color: var(--glo-teal); }
@media (max-width: 900px) { .glp-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .glp-services { grid-template-columns: repeat(2, 1fr); gap: 10px; } .glp-svc__img { height: 110px; } }

/* ── Why Glo n Go — split ── */
.glp-why { background: #fff; }
.glp-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.glp-why__image {
  position: relative;
  border-radius: 1.5rem;
  overflow: visible;
}
.glp-why__image img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.glp-why__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--glo-teal);
  color: #fff;
  border-radius: 1rem;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,169,157,0.4);
}
.glp-why__image-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.glp-why__image-badge small { font-size: .75rem; opacity: 0.85; }
.glp-why__features { display: flex; flex-direction: column; gap: 20px; }
.glp-why__feat { display: flex; gap: 16px; align-items: flex-start; }
.glp-why__feat > span { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.glp-why__feat strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.glp-why__feat p { font-size: .875rem; color: var(--glo-muted); margin: 0; line-height: 1.5; }
@media (max-width: 860px) {
  .glp-why__inner { grid-template-columns: 1fr; gap: 40px; }
  .glp-why__image img { height: 360px; }
  .glp-why__image-badge { right: 0; bottom: -16px; }
}

/* ── Testimonials ── */
.glp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.glp-testimonial {
  background: rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  padding: 28px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.glp-testimonial__img {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}
.glp-testimonial__img img { width: 100%; height: 100%; object-fit: cover; }
.glp-testimonial blockquote { font-size: .9375rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin: 12px 0 16px; font-style: italic; }
.glp-testimonial figcaption strong { display: block; color: #fff; font-size: .9rem; }
.glp-testimonial figcaption span { color: rgba(255,255,255,0.6); font-size: .8rem; }
@media (max-width: 700px) { .glp-testimonials { grid-template-columns: 1fr; gap: 16px; } }

/* ── For Stylists card ── */
.glp-pro-card {
  background: var(--glo-teal);
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 480px;
}
.glp-pro-card__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.glp-pro-card__content .glp-section-head__title { color: #fff; }
.glp-pro-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.glp-pro-list li { font-size: .9375rem; color: rgba(255,255,255,0.9); display: flex; gap: 10px; }
.glp-pro-list li::before { content: '✓'; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.glp-pro-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.glp-pro-card__image { overflow: hidden; }
.glp-pro-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glo-btn--white { background: #fff; color: var(--glo-teal); }
.glo-btn--white:hover { background: var(--glo-cream); }
@media (max-width: 860px) {
  .glp-pro-card { grid-template-columns: 1fr; }
  .glp-pro-card__image { height: 240px; }
  .glp-pro-card__content { padding: 32px 24px; }
}

/* ── Final CTA ── */
.glp-cta-final { padding: 0; }
.glp-cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  margin: 60px 0;
}
.glp-cta-final__content {
  background: var(--glo-ink);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.glp-cta-final__content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; margin: 0 0 12px; font-family: var(--font-heading); }
.glp-cta-final__content p { color: rgba(255,255,255,0.7); margin: 0 0 32px; line-height: 1.6; }
.glp-cta-final__image { overflow: hidden; }
.glp-cta-final__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .glp-cta-final__inner { grid-template-columns: 1fr; margin: 32px 0; }
  .glp-cta-final__image { height: 200px; }
  .glp-cta-final__content { padding: 32px 24px; }
}

@media (max-width: 767px) {
  .glp-section { padding: 48px 0; }
  .glp-section-head { margin-bottom: 28px; }
}
   Skill: Touch Physics · Bottom Nav · Thumb Zones · Micro-interactions
   ============================================================ */

/* ── Touch physics — every interactive element ── */
.glo-btn,
.glo-stylist-card,
.glo-service-tile,
.glo-dash-tab,
.glo-request-card,
.glo-gallery-grid__item,
.glo-wa-btn,
.glo-tag {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

/* Active/pressed states — scale + opacity feedback */
.glo-btn:active            { transform: scale(0.95); opacity: 0.9; transition: transform 0.1s, opacity 0.1s; }
.glo-stylist-card:active   { transform: scale(0.98); transition: transform 0.12s; }
.glo-service-tile:active   { transform: scale(0.97); transition: transform 0.1s; }
.glo-dash-tab:active       { transform: scale(0.96); transition: transform 0.1s; }
.glo-request-card:active   { transform: scale(0.99); transition: transform 0.1s; }
.glo-wa-btn:active         { transform: scale(0.95); transition: transform 0.1s; }

/* Minimum 44×44pt hit targets */
.glo-btn       { min-height: 44px; min-width: 44px; }
.glo-dash-tab  { min-height: 44px; padding-top: 10px; padding-bottom: 10px; }
.glo-wa-btn    { min-height: 44px; }
.glo-gallery-del-btn { min-width: 44px; min-height: 44px; width: 44px; height: 44px; font-size: 16px; }
.glo-form-field input,
.glo-form-field select,
.glo-form-field textarea { min-height: 44px; }

/* Spring-based transitions (cubic-bezier spring approximation) */
.glo-stylist-card  { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.glo-service-tile  { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.glo-btn           { transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, color 0.2s ease, opacity 0.2s ease; }

/* ── BOTTOM TAB BAR (mobile nav) ── */
.glo-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glo-border);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.glo-mobile-nav__items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
}
.glo-mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  text-decoration: none;
  color: var(--glo-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  padding: 4px 12px;
  border-radius: 12px;
  position: relative;
}
.glo-mobile-nav__item:active { transform: scale(0.88); }
.glo-mobile-nav__item.is-active { color: var(--glo-teal); }
.glo-mobile-nav__item.is-active .glo-mobile-nav__icon { background: var(--glo-teal-50); }
.glo-mobile-nav__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease;
}
/* Primary action pill in center */
.glo-mobile-nav__item--primary {
  color: #fff;
  background: var(--glo-teal);
  border-radius: 9999px;
  padding: 10px 20px;
  gap: 4px;
  min-width: 120px;
  box-shadow: 0 4px 16px rgba(0,169,157,0.35);
  flex-direction: row;
  font-size: 13px;
  font-weight: 700;
}
.glo-mobile-nav__item--primary:active { transform: scale(0.93); }
.glo-mobile-nav__item--primary .glo-mobile-nav__icon { background: transparent; width: 20px; height: 20px; font-size: 16px; }
.glo-mobile-nav__item--primary.is-active { color: #fff; }

@media (max-width: 767px) {
  .glo-mobile-nav { display: block; }
  /* Push page content above bottom nav */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  /* Hide desktop header actions on mobile */
  .glo-header__actions { display: none !important; }
  .glo-nav { display: none !important; }
}

/* ── MOBILE HEADER ── */
@media (max-width: 767px) {
  .glo-header { padding: 0.625rem 0; }
  .glo-logo img { height: 1.875rem; }

  /* Floating "Get quotes" sticky button on mobile hero */
  .glo-hero { padding-top: 5rem; padding-bottom: 2rem; }
  .glo-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .glo-hero__form-wrap { order: -1; }
  .glo-hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .glo-hero__form-card { padding: 20px; border-radius: 1.25rem; }
  .glo-hero-form__row { grid-template-columns: 1fr; gap: 12px; }
  .glo-hero__stats { gap: 20px; }
  .glo-hero__stats strong { font-size: 1.25rem; }
}

/* ── SKELETON LOADERS ── */
@keyframes glo-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.glo-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: glo-shimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}
.glo-skeleton-card {
  background: #fff;
  border: 1px solid var(--glo-border);
  border-radius: 1.25rem;
  overflow: hidden;
  padding-bottom: 1.5rem;
}
.glo-skeleton-card__banner { height: 100px; }
.glo-skeleton-card__avatar { width: 60px; height: 60px; border-radius: 50%; margin: -30px 1.25rem 12px; border: 3px solid #fff; }
.glo-skeleton-card__line { height: 14px; margin: 8px 1.25rem; border-radius: 6px; }
.glo-skeleton-card__line--short { width: 60%; }
.glo-skeleton-card__line--xshort { width: 40%; }

/* ── PILL TABS (filter toggle) ── */
.glo-pill-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 12px;
  margin-bottom: 8px;
}
.glo-pill-tabs::-webkit-scrollbar { display: none; }
.glo-pill-tab {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1.5px solid var(--glo-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--glo-muted);
  background: #fff;
  cursor: pointer;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
  touch-action: manipulation;
}
.glo-pill-tab:active { transform: scale(0.94); }
.glo-pill-tab.is-active { background: var(--glo-teal); color: #fff; border-color: var(--glo-teal); }

/* ── BOTTOM SHEET ── */
.glo-bottom-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  backdrop-filter: blur(2px);
  animation: glo-fade-in 0.2s ease;
}
.glo-bottom-sheet-overlay.is-open { display: block; }
@keyframes glo-fade-in { from { opacity: 0; } to { opacity: 1; } }

.glo-bottom-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 201;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 0 0 max(24px, env(safe-area-inset-bottom));
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
.glo-bottom-sheet.is-open { transform: translateY(0); }
.glo-bottom-sheet__handle {
  width: 36px; height: 4px;
  background: #e0e0e0;
  border-radius: 9999px;
  margin: 12px auto 0;
}
.glo-bottom-sheet__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--glo-border);
}
.glo-bottom-sheet__title { font-size: 17px; font-weight: 700; }
.glo-bottom-sheet__close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--glo-cream);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--glo-muted);
  -webkit-tap-highlight-color: transparent;
}
.glo-bottom-sheet__body { padding: 16px 20px; }

/* ── CARD STACK (swipeable) ── */
.glo-card-stack {
  position: relative;
  min-height: 320px;
}
.glo-card-stack__card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--glo-border);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.glo-card-stack__card:nth-child(2) { transform: translateY(8px) scale(0.97); z-index: 1; }
.glo-card-stack__card:nth-child(3) { transform: translateY(16px) scale(0.94); z-index: 0; }
.glo-card-stack__card:first-child  { z-index: 2; }

/* ── FLOATING ACTION BUTTON ── */
.glo-fab {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom));
  right: 20px;
  z-index: 99;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--glo-teal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(0,169,157,0.4);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.glo-fab:active { transform: scale(0.88); box-shadow: 0 3px 12px rgba(0,169,157,0.3); }
@media (max-width: 767px) { .glo-fab { display: flex; } }

/* ── MOBILE TYPOGRAPHY REFINEMENTS ── */
@media (max-width: 767px) {
  .glo-section { padding: 3rem 0; }
  .glo-section__title { font-size: 1.875rem; }
  .glo-steps__grid { grid-template-columns: 1fr; gap: 16px; }
  .glo-step { padding: 20px; }
  .glo-step__num { font-size: 2rem; }
  .glo-step__title { font-size: 1rem; }
  .glo-services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .glo-service-tile { padding: 16px; }
  .glo-service-tile__icon { font-size: 1.5rem; }
  .glo-stylist-grid { grid-template-columns: 1fr; gap: 16px; padding: 16px 0; }
  .glo-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .glo-pro-card { padding: 24px; border-radius: 1.25rem; }
  .glo-pro-card h2 { font-size: 1.5rem; }

  /* Dashboard mobile */
  .glo-dash { padding: 16px 0 24px; }
  .glo-dash-header { padding: 16px; gap: 14px; }
  .glo-dash-header__avatar { width: 56px; height: 56px; font-size: 20px; }
  .glo-dash-header__info h2 { font-size: 1.0625rem; }
  .glo-dash-tabs { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .glo-dash-tabs::-webkit-scrollbar { display: none; }
  .glo-dash-tab { white-space: nowrap; font-size: .75rem; padding: 8px 14px; }
  .glo-dash-section { padding: 20px 16px; border-radius: 1rem; }
  .glo-sub-card__stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .glo-sub-card__stats span { font-size: 1.5rem; }
  .glo-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Form mobile */
  .glo-form-row--2 { grid-template-columns: 1fr; gap: 12px; }
  .glo-request-form-wrap { padding: 20px 0 40px; }
  .glo-request-form__intro h2 { font-size: 1.5rem; }
  .glo-hero__form-card { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

  /* Subscribe page mobile */
  .glo-subscribe-page { padding: 0 0 40px; margin: 20px auto; }
  .glo-subscribe-hero h1 { font-size: 1.75rem; }
  .glo-subscribe-card { padding: 24px 20px; }
  .glo-subscribe-card__amount { font-size: 2.75rem; }
}

/* ── MICRO-INTERACTIONS: Input focus ring ── */
.glo-form-field input,
.glo-form-field select,
.glo-form-field textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.glo-form-field input:focus,
.glo-form-field select:focus,
.glo-form-field textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,169,157,0.12);
}

/* ── MICRO-INTERACTIONS: Button ripple ── */
.glo-btn { position: relative; overflow: hidden; }
.glo-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.glo-btn:active::after { opacity: 1; }

/* ── MICRO-INTERACTIONS: Card hover lift ── */
.glo-stylist-card:hover { transform: translateY(-4px); }
.glo-service-tile:hover { transform: translateY(-3px); }

/* ── SAFE AREA INSETS ── */
.glo-hero__form-card,
.glo-bottom-sheet,
.glo-mobile-nav {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
.glo-hero__form-card { padding-left: 32px; padding-right: 32px; }
@media (max-width: 767px) { .glo-hero__form-card { padding-left: 20px; padding-right: 20px; } }
