/* BookClinicly — Brand Design System */
:root {
  --blue-dark: #0D47A1;
  --blue: #1976D2;
  --teal: #00BFA5;
  --teal-dark: #009688;
  --green: #8BC34A;
  --grey-bg: #F2F4F7;
  --grey-light: #E8ECF1;
  --grey-text: #5A6474;
  --text: #1A2332;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 71, 161, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 71, 161, 0.12);
  --font: 'Poppins', 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: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  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: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 191, 165, 0.35);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 191, 165, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--grey-light);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.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: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

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

.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 { 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) + 3rem) 0 4rem;
  background: linear-gradient(180deg, var(--grey-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero h1 {
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--teal);
}

.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: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-text);
}

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

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-bg);
}

.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.hero-preview {
  display: grid;
  gap: 0.75rem;
}

.preview-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--grey-bg);
  border-radius: var(--radius);
}

.preview-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.preview-icon svg {
  width: 18px;
  height: 18px;
}

.preview-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-dark);
}

.preview-text span {
  font-size: 0.75rem;
  color: var(--grey-text);
}

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

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

section:nth-child(even) {
  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: 1px 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: 12px;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.12), rgba(25, 118, 210, 0.12));
  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: var(--teal);
  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.jaismeen {
  background: linear-gradient(135deg, #7A9E7E 0%, #F5F0E8 100%);
}

.client-preview.chohan {
  background: linear-gradient(135deg, #1B2A4A 0%, #C9A227 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-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 191, 165, 0.15);
}

.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 {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

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

/* 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(0, 191, 165, 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: 14px;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.12), rgba(25, 118, 210, 0.12));
  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.physio {
  background: linear-gradient(135deg, #00BFA5 0%, #E0F7FA 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(0, 191, 165, 0.08);
  border: 1px solid rgba(0, 191, 165, 0.25);
  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: 8px;
}

.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: 1px 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: 12px;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.12), rgba(25, 118, 210, 0.12));
  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); }
}
