/* SalonBookly — Bright creative design system */
:root {
  --blue-dark: #1E1033;
  --blue: #7C3AED;
  --teal: #FF4D8D;
  --teal-dark: #E91E7A;
  --green: #22D3A6;
  --cyan: #00C2FF;
  --yellow: #FFD23F;
  --coral: #FF6B4A;
  --grey-bg: #FFF8FC;
  --grey-light: #F0E8FF;
  --grey-text: #5C5470;
  --text: #2A2438;
  --white: #FFFFFF;
  --blush: #FFE4F0;
  --sand: #FFF0E0;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 20px 50px rgba(255, 77, 141, 0.18);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --pitch-h: 36px;
  --topbar-h: calc(var(--header-h) + var(--pitch-h));
  --mobile-bar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--blue-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blush);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--grey-text);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #6D28D9 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--grey-light);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--blue);
  background: var(--grey-bg);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover {
  background: var(--grey-bg);
  color: var(--blue-dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-light);
}

.pitch-line {
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 50%, var(--cyan) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.pitch-line strong {
  color: var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-name .book { color: var(--blue-dark); }
.logo-name .clinicly,
.logo-name .bookly { color: var(--teal); }

.logo-tagline {
  font-size: 0.65rem;
  color: var(--grey-text);
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.nav-desktop a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 99;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--grey-bg);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  padding: calc(var(--topbar-h) + 2.5rem) 0 4.5rem;
  background: linear-gradient(165deg, #FFF8FC 0%, #F5EEFF 45%, #E8F9FF 100%);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero-blob--1 {
  width: 320px;
  height: 320px;
  background: var(--teal);
  top: 8%;
  right: -5%;
}

.hero-blob--2 {
  width: 260px;
  height: 260px;
  background: var(--cyan);
  bottom: 15%;
  left: -8%;
}

.hero-blob--3 {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  top: 40%;
  left: 35%;
  opacity: 0.35;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--grey-text);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--grey-light);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.08);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  min-height: 380px;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  background: var(--grey-light);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-photo:hover img {
  transform: scale(1.04);
}

.hero-photo-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(30, 16, 51, 0.25);
}

.hero-img--main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
}

.hero-img--styling {
  aspect-ratio: 4 / 5;
}

.hero-img--nails {
  aspect-ratio: 1 / 1;
  transform: translateY(0.5rem);
}

.hero-img--barber {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
  max-height: 200px;
}

.hero-float-card {
  position: absolute;
  top: 12%;
  right: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 3px solid var(--grey-light);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  z-index: 3;
  animation: hero-float 4s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--blue-dark);
}

.hero-float-card span {
  font-size: 0.72rem;
  color: var(--grey-text);
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 100%);
  border-radius: 14px;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.hero-float-pill {
  position: absolute;
  bottom: 8%;
  left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--yellow);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 3px solid var(--white);
  box-shadow: 0 8px 20px rgba(255, 210, 63, 0.45);
  z-index: 3;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .hero-img--main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .hero-img--styling {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-img--nails {
    grid-column: 2;
    grid-row: 2;
    transform: none;
  }

  .hero-img--barber {
    display: none;
  }

  .hero-float-card {
    right: 8%;
    top: 18%;
  }
}

@media (max-width: 899px) {
  .hero-img--barber {
    display: block;
  }

  .hero-float-card {
    top: auto;
    bottom: 28%;
    right: 0.5rem;
    max-width: 180px;
  }
}

/* Sections */
section {
  padding: 4.5rem 0;
}

section:nth-child(even):not(.cta-section) {
  background: var(--grey-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-intro {
  margin-inline: auto;
}

/* Value cards */
.value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 2px solid var(--grey-light);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blush) 0%, #E0F4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--grey-text);
}

/* Includes */
.includes-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.include-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
}

.include-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.include-check svg {
  width: 14px;
  height: 14px;
}

.include-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.include-item p {
  font-size: 0.875rem;
  color: var(--grey-text);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--grey-text);
}

/* Client examples */
.clients-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

.client-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}

.client-preview {
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.client-preview.hair {
  background: linear-gradient(135deg, #FF4D8D 0%, #FFD23F 100%);
}

.client-preview.unisex {
  background: linear-gradient(135deg, #7C3AED 0%, #00C2FF 100%);
}

.client-preview span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.client-body {
  padding: 1.25rem 1.5rem;
}

.client-body h3 {
  margin-bottom: 0.5rem;
}

.client-meta {
  font-size: 0.85rem;
  color: var(--grey-text);
  display: grid;
  gap: 0.25rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--grey-light);
  position: relative;
}

.price-card.featured {
  border: 3px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--teal), var(--blue), var(--cyan)) border-box;
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--grey-text);
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-text);
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
}

.price-features li {
  font-size: 0.875rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.price-card .btn {
  width: 100%;
}

/* Expectations */
.expectations {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .expectations { grid-template-columns: 1fr 1fr; }
}

.expect-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
}

.expect-box.yes h3 { color: var(--teal); }
.expect-box.no h3 { color: var(--grey-text); }

.expect-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.expect-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.expect-list li {
  font-size: 0.9rem;
  color: var(--grey-text);
  padding-left: 1.25rem;
  position: relative;
}

.expect-box.yes .expect-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.expect-box.no .expect-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--grey-text);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--teal);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 40%, var(--cyan) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  isolation: isolate;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 210, 63, 0.35) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,24 C360,48 720,0 1080,24 C1260,36 1380,30 1440,24 L1440,48 L0,48 Z' fill='%23FFFFFF'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  max-width: 640px;
  margin-inline: auto;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-section .btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-white:hover {
  background: var(--grey-bg);
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.cta-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Contact form */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(181, 168, 196, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-dark);
  margin-bottom: 0.15rem;
}

.contact-item span, .contact-item a {
  font-size: 0.9rem;
  color: var(--grey-text);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--grey-bg);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-name {
  font-size: 1.3rem;
}

.footer-brand .logo-name .book,
.footer-brand .logo-name .clinicly {
  color: var(--white);
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem 0;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* Mobile sticky bar */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  height: var(--mobile-bar-h);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
  transition: background 0.15s;
}

.mobile-bar a svg {
  width: 22px;
  height: 22px;
}

.mobile-bar a.book {
  background: var(--teal);
  color: var(--white);
}

.mobile-bar a.book:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.mobile-bar a:not(.book):hover {
  background: var(--grey-bg);
  color: var(--teal);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

.hero-sub-small {
  font-size: 0.95rem;
  margin-top: -1rem;
}

/* Specialty cards */
.specialty-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .specialty-grid { grid-template-columns: repeat(4, 1fr); }
}

.specialty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.specialty-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.specialty-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blush) 0%, #E8F4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 1rem;
}

.specialty-icon svg {
  width: 26px;
  height: 26px;
}

.specialty-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.specialty-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
}

.client-preview.beauty {
  background: linear-gradient(135deg, #22D3A6 0%, #00C2FF 100%);
}

@media (min-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-gst {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-text);
  margin: -0.5rem 0 1rem;
}

.pricing-gst-notice {
  text-align: center;
  margin-top: 1.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 77, 141, 0.08);
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--blue-dark);
  max-width: 560px;
  margin-inline: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--grey-text);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  color: #fff;
}

.btn-full {
  width: 100%;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo-link img {
  max-height: 46px;
  width: auto;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  background: var(--white);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 170px;
  display: block;
}

.pricing-shared {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.pricing-shared h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pricing-shared-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .pricing-shared-list { grid-template-columns: repeat(2, 1fr); }
}

.pricing-shared-list li {
  font-size: 0.875rem;
  color: var(--grey-text);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-shared-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-diff-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 1rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-features-diff .is-yes {
  color: var(--teal-dark);
  font-weight: 600;
}

.price-features-diff .is-no {
  color: var(--grey-text);
  opacity: 0.85;
}

.price-features-diff .is-no::before {
  background: var(--grey-light);
}

.pricing-design-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.pricing-design-link a {
  color: var(--teal);
  font-weight: 600;
}

/* Design Services page */
.page-hero {
  padding: calc(var(--topbar-h) + 2.5rem) 0 2rem;
  background: linear-gradient(180deg, var(--grey-bg) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero .section-intro {
  margin-inline: auto;
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.design-services-section {
  padding: 3rem 0 4.5rem;
}

.design-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .design-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .design-grid { grid-template-columns: repeat(3, 1fr); }
}

.design-card {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.design-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.design-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blush) 0%, #E8F4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.design-card-icon svg {
  width: 24px;
  height: 24px;
}

.design-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.design-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  flex: 1;
  margin-bottom: 0.75rem;
}

.design-from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.design-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.design-card-link:hover {
  color: var(--teal);
}

.design-note {
  margin-top: 2.5rem;
  text-align: center;
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.design-note h3 {
  margin-bottom: 0.5rem;
}

.design-note p {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-contact-line {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0;
}

.footer-address {
  line-height: 1.5;
  max-width: 220px;
}

@media (max-width: 767px) {
  body { padding-bottom: var(--mobile-bar-h); }
}

/* Fix dark mode override */
@media (prefers-color-scheme: dark) {
  html { color-scheme: light; }
  body { background: var(--white); color: var(--text); }
}
