/* ==========================================================================
   bishoy.ca — global styles (mobile-first)
   Edit accent + spacing tokens below to re-theme quickly.
   ========================================================================== */

:root {
  --bg: #f8f7f4;
  --bg-elevated: #ffffff;
  --text: #12151a;
  --text-muted: #4a5059;
  --border: rgba(18, 21, 26, 0.08);
  --accent: #1e3a4c;
  --accent-hover: #152a38;
  --accent-soft: rgba(30, 58, 76, 0.08);
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(18, 21, 26, 0.04), 0 8px 24px rgba(18, 21, 26, 0.06);
  --header-h: 64px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 4.5rem;
  }
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 0;
}

/* Layout */

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--tight {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--surface {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 2rem;
  text-wrap: pretty;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(18, 21, 26, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav__toggle-bar::before {
  top: -6px;
}

.nav__toggle-bar::after {
  top: 6px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  margin-left: 0.25rem;
}

.nav__link--cta:hover {
  background: var(--accent-hover);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    padding: 0.875rem 1rem;
  }

  .nav__link--cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Header contact strip (desktop) */

.header-contact {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  max-width: min(100%, 36rem);
}

@media (min-width: 900px) {
  .header-contact {
    display: flex;
  }
}

.header-contact a {
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.header-contact a:hover {
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent-soft);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */

.hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 5rem);
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg) 55%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr minmax(260px, 340px);
  }
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 1.75rem;
  text-wrap: pretty;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta strong {
  color: var(--text);
  font-weight: 600;
}

.hero-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero-card__micro {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-card__micro a {
  color: var(--accent);
  font-weight: 500;
}

.hero__inner {
  max-width: min(100%, 40rem);
}

.hero__actions {
  margin-top: 0.25rem;
}

/* Property analysis lead card */

.lead-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}

.lead-card__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.lead-card__lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.lead-card__form {
  margin-top: 0.25rem;
}

.label-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.field-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -0.25rem 0 0.25rem;
}

/* How it works */

.how-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}

.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.how-steps__n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
}

.section__title--compact {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section__lead--short {
  margin-bottom: 1.25rem;
  max-width: none;
}

/* Section CTAs */

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
}

/* Outcome cards */

.card--outcome .card__text {
  margin-bottom: 0;
}

/* Intent picker (contact block) */

.intent-picker {
  margin-bottom: 1.25rem;
}

.intent-picker__label {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.intent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.intent-chip {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 1.2;
}

.intent-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}

.intent-chip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.intent-chip--active {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

/* Intent chips on light background (contact page form) */

.intent-picker--light {
  margin-bottom: 1rem;
}

.contact-form-wrap .intent-picker__label--dark {
  color: var(--text);
}

.intent-chips--dark .intent-chip--dark {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-elevated);
}

.intent-chips--dark .intent-chip--dark:hover {
  background: var(--accent-soft);
  border-color: rgba(30, 58, 76, 0.25);
}

.intent-chips--dark .intent-chip--dark.intent-chip--active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* Cards / services */

.grid-cards {
  display: grid;
  gap: 1.25rem;
}

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

/* Two columns until wide screens so card copy doesn’t wrap too narrowly */
@media (min-width: 900px) {
  .grid-cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: var(--text);
}

.card__list li {
  margin-bottom: 0.35rem;
}

.card__list li:last-child {
  margin-bottom: 0;
}

/* Overseas section */

.intl-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.intl-section-extra {
  margin-top: 1.25rem;
}

.intl-block {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.intl-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.intl-block p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Why */

.why-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.why-list__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
}

.why-list h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.why-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Contact section */

.contact-block {
  background: var(--accent);
  color: #e8eef2;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
}

.contact-block a {
  color: #fff;
}

.contact-block .section__label {
  color: rgba(255, 255, 255, 0.65);
}

.contact-block .section__title {
  color: #fff;
}

.contact-block .section__lead {
  color: rgba(255, 255, 255, 0.85);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.contact-methods .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.contact-methods .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-methods .btn--primary {
  background: #fff;
  color: var(--accent);
}

.contact-methods .btn--primary:hover {
  background: #f0f4f7;
}

.form-notice {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.form-notice--success {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(30, 58, 76, 0.2);
}

.form-notice--error {
  background: #fff5f5;
  color: #7f1d1d;
  border: 1px solid rgba(127, 29, 29, 0.25);
}

.contact-block .form-notice--success {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-block .form-notice--error {
  background: rgba(255, 230, 230, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 200, 200, 0.45);
}

.contact-form-wrap {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  color: var(--text);
}

.contact-form-wrap a {
  color: var(--accent);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Footer */

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* Same horizontal width as header: one .wrap (see .wrap in Layout) */
.site-footer__inner {
  width: 100%;
  box-sizing: border-box;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  text-align: center;
  justify-items: center;
  justify-content: center;
}

@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 22rem));
    align-items: start;
  }
}

.site-footer h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-size: 0.9375rem;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-legal p {
  margin: 0 0 0.65rem;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-disclosure {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}

.footer-disclosure p {
  margin: 0 0 0.65rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclosure p:last-child {
  margin-bottom: 0;
}

.footer-disclosure a {
  color: var(--accent);
}

.footer-legal__links {
  margin: 1rem 0 0.65rem;
  font-size: 0.875rem;
}

.footer-legal__links a {
  color: var(--accent);
  font-weight: 500;
}

.form-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-block .form-footnote {
  color: rgba(255, 255, 255, 0.75);
}

.form-footnote--below-card {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.faq-legal-anchor {
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.faq-disclaimer {
  max-width: 720px;
  margin: 0 auto;
}

.faq-disclaimer p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-disclaimer a {
  color: var(--accent);
  font-weight: 500;
}

.privacy-page {
  max-width: 42rem;
}

.privacy-page__h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

.privacy-page__h2:first-of-type {
  margin-top: 0;
}

.privacy-page p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-page a {
  color: var(--accent);
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 11px;
  left: 6px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 6px;
  left: 11px;
}

.faq-item.is-open .faq-icon::after {
  transform: scaleY(0);
}

.faq-panel {
  display: none;
  padding: 0 0 1.125rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

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

/* Map embed */

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  aspect-ratio: 16 / 10;
  min-height: 260px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating actions */

.float-group {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(18, 21, 26, 0.15);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.float-btn:hover {
  transform: scale(1.05);
}

.float-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.float-btn--wa {
  background: var(--whatsapp);
  color: #fff;
}

.float-btn--call {
  background: var(--accent);
  color: #fff;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

@media (min-width: 900px) {
  .float-group {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Page hero (inner pages) */

.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.page-hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: none;
  text-wrap: pretty;
}

/* Utilities */

.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
