:root {
  color-scheme: light;
  --brand: #22bfc8;
  --brand-deep: #0d7b84;
  --brand-soft: #e4fafb;
  --ink: #132232;
  --muted: #667a8e;
  --line: #d5e3ea;
  --surface: #ffffff;
  --page: #f4f9fb;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 17%, rgb(34 191 200 / 14%), transparent 29rem),
    radial-gradient(circle at 10% 88%, rgb(13 123 132 / 8%), transparent 30rem),
    linear-gradient(145deg, #fbfefe 0%, var(--page) 58%, #edf7f8 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(19 34 50 / 8%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-block;
  border: 2px solid var(--brand);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgb(13 123 132 / 12%);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--brand-deep);
}

.brand-mark::before {
  left: 9px;
}

.brand-mark::after {
  right: 9px;
}

.brand-mark__top {
  position: absolute;
  top: 10px;
  right: 6px;
  left: 6px;
  height: 2px;
  border-radius: 999px;
  background: rgb(34 191 200 / 45%);
}

.brand-mark__dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: -12px 0 0 rgb(34 191 200 / 34%);
}

.header-note {
  padding: 9px 14px;
  border: 1px solid rgb(34 191 200 / 26%);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgb(255 255 255 / 68%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding: 72px 0 82px;
}

.hero-copy {
  max-width: 650px;
}

.status {
  width: fit-content;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgb(34 191 200 / 16%);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5.65rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

h1 span {
  display: block;
  color: var(--brand-deep);
}

.intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.benefits {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  min-height: 132px;
  padding: 20px;
  display: flex;
  gap: 15px;
  border: 1px solid rgb(213 227 234 / 86%);
  border-radius: 20px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 18px 55px rgb(19 34 50 / 5%);
  backdrop-filter: blur(12px);
}

.benefit-number {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit h2 {
  margin: 0 0 8px;
  font-size: 0.97rem;
  letter-spacing: -0.015em;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.product-preview {
  position: relative;
  display: grid;
  place-items: center;
}

.preview-glow {
  position: absolute;
  width: min(440px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(34 191 200 / 18%), transparent 66%);
  filter: blur(2px);
}

.schedule-card {
  position: relative;
  width: min(100%, 430px);
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 84%);
  border-radius: 30px;
  background: rgb(255 255 255 / 86%);
  box-shadow:
    0 35px 80px rgb(13 123 132 / 15%),
    0 7px 22px rgb(19 34 50 / 7%);
  backdrop-filter: blur(20px);
  transform: rotate(1.5deg);
}

.schedule-card::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: rgb(34 191 200 / 10%);
}

.schedule-header {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-header p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.schedule-header h2 {
  margin: 0;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.schedule-header > span {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.appointment {
  position: relative;
  z-index: 1;
  min-height: 76px;
  margin-top: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 12px;
  align-items: center;
  gap: 13px;
  border: 1px solid #e5edf1;
  border-radius: 17px;
  background: #fff;
}

.appointment--active {
  border-color: rgb(34 191 200 / 34%);
  background: linear-gradient(110deg, #fff 40%, #f0fbfc 100%);
}

.appointment time {
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.appointment strong,
.appointment span {
  display: block;
}

.appointment strong {
  margin-bottom: 4px;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
}

.appointment span {
  color: var(--muted);
  font-size: 0.71rem;
}

.appointment i {
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgb(34 191 200 / 35%);
}

.schedule-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.schedule-footer span {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 46%, var(--brand) 47% 57%, transparent 58%),
    #fff;
}

.site-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(19 34 50 / 8%);
  color: var(--muted);
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 36px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 64px 0 72px;
  }

  .hero-copy {
    max-width: none;
  }

  .product-preview {
    padding: 0 20px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, 500px);
  }

  .site-header {
    min-height: 84px;
  }

  .header-note {
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .brand {
    gap: 10px;
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    gap: 48px;
    padding: 52px 0 58px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .intro {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .benefits {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .benefit {
    min-height: auto;
  }

  .product-preview {
    padding: 0;
  }

  .schedule-card {
    padding: 20px;
    border-radius: 24px;
    transform: none;
  }

  .appointment {
    grid-template-columns: 43px minmax(0, 1fr) 10px;
    gap: 10px;
    padding: 12px;
  }

  .site-footer {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
}

/* Final marketing-site V1 */
:root {
  --brand: #16aeb7;
  --brand-bright: #25c5cc;
  --brand-deep: #087f87;
  --brand-soft: #e5f7f8;
  --navy: #082335;
  --ink: #102d3d;
  --muted: #607887;
  --line: #dbe9ec;
  --surface: #fff;
  --page: #f7fbfc;
  --shadow: 0 28px 70px rgb(8 63 69 / 15%);
}

body { min-height: 100vh; overflow-x: clip; background: var(--surface); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
[id] { scroll-margin-top: 100px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 18px; border-radius: 10px; color: #fff; background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 0; display: block; border-bottom: 1px solid rgb(8 35 53 / 7%); background: rgb(255 255 255 / 92%); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex: none; color: inherit; font-size: inherit; }
.brand-logo { display: block; width: 176px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a, .text-link { color: #3f5968; font-size: .87rem; font-weight: 650; transition: color 160ms ease; }
.desktop-nav a:hover, .text-link:hover { color: var(--brand-deep); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.mobile-menu { display: none; margin-left: auto; }

.button { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 14px; font-size: .92rem; font-weight: 760; transition: transform 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; }
.button--large { min-height: 56px; padding-inline: 26px; border-radius: 16px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: 0 14px 30px rgb(8 127 135 / 20%); }
.button--secondary { border-color: #cbdde1; color: var(--navy); background: rgb(255 255 255 / 72%); }
.button--light { color: var(--navy); background: #fff; box-shadow: 0 14px 30px rgb(3 50 54 / 18%); }
.button--outline-light { border-color: rgb(255 255 255 / 45%); color: #fff; background: rgb(255 255 255 / 7%); }

.hero { position: relative; min-height: 760px; padding: 102px 0 112px; display: block; overflow: hidden; background: linear-gradient(150deg, #fbfefe 0%, #f5fbfb 52%, #edf9f9 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr); align-items: center; gap: clamp(68px, 8vw, 118px); }
.hero-copy { max-width: 680px; }
.eyebrow { width: auto; margin: 0 0 20px; display: block; color: var(--brand-deep); font-size: .78rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 20px; height: 2px; margin: 0 9px 3px 0; display: inline-block; background: var(--brand); }
.eyebrow--light { color: #baf3f5; }
h1, h2, h3 { color: var(--navy); text-wrap: balance; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.65rem, 6vw, 5.75rem); font-weight: 790; line-height: .98; letter-spacing: -.068em; }
.hero h1 span { display: block; color: var(--brand-deep); }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.07rem, 1.5vw, 1.23rem); line-height: 1.72; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-points { margin: 30px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; color: #4a6371; font-size: .82rem; font-weight: 650; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points li > span { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--brand-deep); background: #dff5f5; font-size: .65rem; }
.hero-orb { position: absolute; border-radius: 50%; }
.hero-orb--one { top: 7%; right: -11rem; width: 39rem; height: 39rem; background: radial-gradient(circle, rgb(37 197 204 / 17%), transparent 68%); }
.hero-orb--two { bottom: -18rem; left: -20rem; width: 38rem; height: 38rem; background: radial-gradient(circle, rgb(8 127 135 / 8%), transparent 67%); }

.hero-product { position: relative; min-height: 560px; display: grid; place-items: center; }
.phone-frame { position: relative; z-index: 2; width: 304px; padding: 10px; border: 1px solid rgb(255 255 255 / 72%); border-radius: 46px; background: #0b2939; box-shadow: 0 45px 90px rgb(8 63 69 / 24%), inset 0 0 0 2px rgb(255 255 255 / 9%); transform: rotate(2.2deg); }
.phone-speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 78px; height: 19px; border-radius: 0 0 13px 13px; background: #0b2939; transform: translateX(-50%); }
.phone-screen { position: relative; min-height: 574px; padding: 40px 17px 18px; overflow: hidden; border-radius: 37px; background: #f2f7f9; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; }
.app-topbar small, .app-topbar strong { display: block; }
.app-topbar small { margin-bottom: 4px; color: #6c8190; font-size: .62rem; }
.app-topbar strong { color: var(--navy); font-size: .78rem; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brand); font-size: .7rem; font-weight: 780; }
.app-search { height: 39px; margin-top: 18px; padding: 0 12px; display: flex; align-items: center; gap: 7px; border: 1px solid #e2eaed; border-radius: 12px; color: #8a9aa4; background: #fff; font-size: .59rem; }
.app-title { margin: 19px 1px 10px; display: flex; align-items: center; justify-content: space-between; }
.app-title strong { color: var(--navy); font-size: .68rem; }
.app-title span { color: var(--brand-deep); font-size: .55rem; font-weight: 700; }
.app-appointment { padding: 12px; display: grid; grid-template-columns: 49px 1fr; gap: 11px; border: 1px solid #e2edef; border-radius: 15px; background: #fff; box-shadow: 0 7px 18px rgb(8 35 53 / 6%); }
.app-time { display: grid; place-content: center; border-radius: 11px; color: #fff; background: linear-gradient(145deg, var(--brand), var(--brand-deep)); text-align: center; }
.app-time strong, .app-time span, .app-appointment > div:last-child > * { display: block; }
.app-time strong { font-size: .7rem; }.app-time span { font-size: .48rem; }
.app-appointment > div:last-child > strong { margin-top: 1px; font-size: .66rem; }.app-appointment > div:last-child > span { margin-top: 4px; color: #718692; font-size: .51rem; }
.app-appointment em { width: fit-content; margin-top: 7px; padding: 4px 7px; border-radius: 999px; color: var(--brand-deep); background: var(--brand-soft); font-size: .45rem; font-style: normal; font-weight: 750; }
.service-card { overflow: hidden; border-radius: 15px; background: #fff; box-shadow: 0 7px 18px rgb(8 35 53 / 6%); }
.service-cover { position: relative; height: 92px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #b9ecee, #52c6cb 65%, #168f98); }
.service-cover > span { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid rgb(255 255 255 / 72%); border-radius: 13px; background: rgb(255 255 255 / 22%); font-size: .7rem; font-weight: 800; }
.service-cover i { position: absolute; top: 9px; right: 10px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #ed6477; background: #fff; font-size: .72rem; font-style: normal; }
.service-info { padding: 10px 12px; display: grid; grid-template-columns: 1fr auto; }
.service-info strong { font-size: .63rem; }.service-info span { grid-column: 1; margin-top: 3px; color: #748995; font-size: .49rem; }.service-info small { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #e99a24; font-size: .5rem; font-weight: 750; }
.app-nav { position: absolute; right: 0; bottom: 0; left: 0; height: 54px; padding: 7px 11px 5px; display: flex; justify-content: space-around; border-top: 1px solid #e5ecef; background: #fff; }
.app-nav > span { min-width: 46px; display: grid; place-items: center; color: #9aabb4; font-size: .8rem; }.app-nav small { display: block; font-size: .4rem; }.app-nav .active { color: var(--brand-deep); }
.floating-card { position: absolute; z-index: 4; padding: 12px 15px; display: flex; align-items: center; gap: 10px; border: 1px solid rgb(255 255 255 / 82%); border-radius: 15px; background: rgb(255 255 255 / 92%); box-shadow: 0 12px 30px rgb(8 35 53 / 9%); }
.floating-card strong, .floating-card small { display: block; white-space: nowrap; }.floating-card strong { color: var(--navy); font-size: .72rem; }.floating-card small { margin-top: 2px; color: #718793; font-size: .53rem; }
.float-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: var(--brand); }.float-icon--star { color: #a66400; background: #fff0d4; }
.floating-card--rating { top: 66px; left: 4px; }.floating-card--slot { right: -5px; bottom: 72px; }

.benefit-bar { position: relative; z-index: 5; border-block: 1px solid #e6eff1; background: #fff; }
.benefit-grid { min-height: 134px; display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-grid article { padding: 28px 34px; display: flex; align-items: center; gap: 17px; border-right: 1px solid #e6eff1; }.benefit-grid article:last-child { border-right: 0; }
.benefit-grid article > span { color: var(--brand); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }.benefit-grid strong { color: var(--navy); font-size: .92rem; }.benefit-grid p { margin: 5px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.section-heading { max-width: 700px; margin: 0 0 52px; }.section-heading--center { margin-inline: auto; text-align: center; }.section-heading--center .eyebrow { text-align: center; }
.section-heading h2, .business-copy h2, .link-copy h2, .trust-grid h2, .faq-intro h2, .final-cta h2 { margin: 0; font-size: clamp(2.35rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.052em; }
.section-heading > p:last-child, .section-lead, .link-copy > p, .faq-intro > p { margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.feature-card { min-height: 310px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fff, #f7fbfc); box-shadow: 0 18px 45px rgb(8 35 53 / 5%); }
.feature-card--large { grid-row: span 2; min-height: 640px; }
.feature-icon, .steps-grid li > i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--brand-deep); background: var(--brand-soft); font-size: 1.2rem; font-style: normal; font-weight: 800; }
.feature-card h3, .trust-cards h3, .steps-grid h3 { margin: 22px 0 0; font-size: 1.25rem; letter-spacing: -.025em; }.feature-card > p, .trust-cards p, .steps-grid p { margin: 11px 0 0; color: var(--muted); font-size: .89rem; line-height: 1.65; }
.discovery-preview { margin-top: 42px; padding: 22px; border: 1px solid #e2ecef; border-radius: 22px; background: #f2f7f9; transform: rotate(-1deg); }
.discovery-search { height: 46px; padding: 0 15px; display: flex; align-items: center; border: 1px solid #e1e9ec; border-radius: 13px; color: #8b9ba4; background: #fff; font-size: .69rem; }
.category-row { margin-top: 13px; display: flex; gap: 8px; }.category-row span { padding: 8px 11px; border-radius: 9px; color: #70858f; background: #fff; font-size: .62rem; }.category-row .active { color: #fff; background: var(--brand); }
.mini-business { margin-top: 13px; padding: 13px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 11px; border-radius: 14px; background: #fff; box-shadow: 0 8px 20px rgb(8 35 53 / 5%); }.mini-business > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--brand); font-style: normal; font-weight: 800; }.mini-business strong, .mini-business small { display: block; }.mini-business strong { font-size: .72rem; }.mini-business small { margin-top: 4px; color: #7a8e98; font-size: .56rem; }.mini-business b { color: var(--brand-deep); font-size: 1.1rem; }
.slot-row { margin-top: 33px; display: flex; gap: 8px; }.slot-row span { flex: 1; padding: 12px 6px; border: 1px solid #d9e6e9; border-radius: 10px; color: var(--brand-deep); background: #fff; text-align: center; font-size: .65rem; font-weight: 750; }.slot-row .active { border-color: var(--brand); color: #fff; background: var(--brand); }
.status-preview { margin-top: 30px; padding: 15px 17px; display: grid; grid-template-columns: 1fr auto; border: 1px solid #dcebed; border-radius: 15px; background: #fff; }.status-preview span { width: fit-content; padding: 5px 8px; border-radius: 999px; color: var(--brand-deep); background: var(--brand-soft); font-size: .55rem; font-weight: 750; }.status-preview strong { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--brand-deep); }.status-preview small { margin-top: 6px; color: #728792; }

.business-section { padding: 112px 0; overflow: hidden; color: #fff; background: var(--navy); }
.business-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 72px; }
.business-copy h2 { color: #fff; }.business-copy .section-lead { color: #aac0cb; }
.check-list { margin: 34px 0; padding: 0; display: grid; gap: 21px; list-style: none; }.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; }.check-list li > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: #aef1f3; background: rgb(37 197 204 / 15%); font-size: .72rem; }.check-list strong { color: #fff; font-size: .91rem; }.check-list p { margin: 5px 0 0; color: #9eb5c0; font-size: .79rem; line-height: 1.55; }
.steps-section { background: #f3fafb; }.steps-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; }.steps-grid li { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }.steps-grid li > span { position: absolute; top: 25px; right: 28px; color: #d7e6e9; font-size: 2.6rem; font-weight: 850; }
.link-section { padding-top: 0; background: #f3fafb; }.link-card { min-height: 500px; padding: 72px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; overflow: hidden; border-radius: 34px; color: #fff; background: linear-gradient(135deg, var(--brand-deep), #075d68 80%); box-shadow: var(--shadow); }.link-copy h2 { color: #fff; }.link-copy > p { color: #c0e5e7; }.link-copy .button { margin-top: 28px; }
.public-link-preview { width: min(100%, 440px); justify-self: end; padding: 18px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 25px; color: var(--navy); background: rgb(255 255 255 / 96%); box-shadow: 0 35px 70px rgb(0 0 0 / 24%); transform: rotate(1.5deg); }.link-browser { height: 36px; padding: 0 8px; display: flex; align-items: center; gap: 5px; border-radius: 10px 10px 0 0; background: #f0f4f5; }.link-browser > span { width: 6px; height: 6px; border-radius: 50%; background: #c3d1d5; }.link-browser p { flex: 1; margin: 0 0 0 7px; padding: 6px 8px; border-radius: 6px; color: #82949d; background: #fff; font-size: .47rem; }.link-business { padding: 18px 4px 14px; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 11px; }.link-business > i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--brand); font-style: normal; font-weight: 800; }.link-business strong, .link-business small { display: block; }.link-business strong { font-size: .72rem; }.link-business small { margin-top: 4px; color: #7a8d97; font-size: .52rem; }.link-business em { color: #d88a16; font-size: .55rem; font-style: normal; font-weight: 750; }.link-service { margin-top: 8px; padding: 13px 14px; display: flex; justify-content: space-between; border: 1px solid #dfe9eb; border-radius: 11px; font-size: .61rem; }.link-service strong { color: var(--brand-deep); }.link-button { margin-top: 14px; padding: 13px; border-radius: 11px; color: #fff; background: var(--brand); text-align: center; font-size: .63rem; font-weight: 780; }

.trust-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 80px; }.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.trust-cards article { padding: 24px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 14px 35px rgb(8 35 53 / 5%); }.trust-cards article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-deep); background: var(--brand-soft); font-weight: 800; }.trust-cards h3 { font-size: .98rem; }.trust-cards p { font-size: .77rem; }
.faq-section { background: #f6fafb; }.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }.faq-list { display: grid; gap: 10px; }.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; }.faq-list summary { min-height: 66px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); cursor: pointer; list-style: none; font-size: .9rem; font-weight: 720; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--brand-deep); font-size: 1.25rem; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { margin: -2px 20px 20px; padding-top: 16px; border-top: 1px solid #e6eef0; color: var(--muted); font-size: .83rem; line-height: 1.7; }
.final-cta { background: #fff; }.final-cta-card { min-height: 360px; padding: 72px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 50px; overflow: hidden; border-radius: 34px; color: #fff; background: linear-gradient(135deg, #087f87, #075866); }.final-cta h2 { max-width: 720px; color: #fff; }.final-actions { display: grid; justify-content: end; gap: 12px; }

.site-footer { min-height: 0; padding: 72px 0 24px; display: block; border-top: 1px solid #e2ecee; color: inherit; background: #f8fbfc; font-size: inherit; }.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 50px; }.footer-brand p { max-width: 320px; margin: 18px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }.footer-grid nav { display: grid; align-content: start; justify-self: end; min-width: 190px; gap: 13px; }.footer-grid nav strong { margin-bottom: 5px; color: var(--navy); font-size: .82rem; }.footer-grid nav a { width: fit-content; color: var(--muted); font-size: .78rem; }.footer-grid nav a:hover { color: var(--brand-deep); }.footer-bottom { margin-top: 56px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid #dde8eb; color: #7c909b; font-size: .72rem; }.footer-bottom a { color: var(--brand-deep); font-weight: 700; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }.desktop-nav a { font-size: .79rem; }.text-link { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 410px; gap: 45px; }.floating-card--rating { left: -18px; }.floating-card--slot { right: -15px; }
  .business-grid { grid-template-columns: 1fr; }.business-copy { max-width: 680px; }
  .trust-grid { grid-template-columns: 1fr; gap: 38px; }.trust-grid > div:first-child { max-width: 660px; }
}

@media (max-width: 840px) {
  .section { padding: 88px 0; }.container { width: min(100% - 36px, 720px); }
  .desktop-nav, .header-actions { display: none; }.mobile-menu { position: relative; display: block; }.mobile-menu summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; list-style: none; }.mobile-menu summary::-webkit-details-marker { display: none; }.mobile-menu summary span { width: 18px; height: 2px; display: block; background: var(--navy); }.mobile-menu nav { position: absolute; top: 54px; right: 0; width: min(310px, calc(100vw - 36px)); padding: 14px; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }.mobile-menu nav > a:not(.button) { padding: 12px; border-radius: 10px; color: #465f6d; font-size: .86rem; font-weight: 650; }
  .hero { min-height: auto; padding-top: 78px; }.hero-grid { grid-template-columns: 1fr; gap: 70px; }.hero-product { min-height: 570px; }.floating-card--rating { left: calc(50% - 205px); }.floating-card--slot { right: calc(50% - 215px); }
  .benefit-grid { grid-template-columns: 1fr; padding-block: 12px; }.benefit-grid article { min-height: 104px; border-right: 0; border-bottom: 1px solid #e6eff1; }.benefit-grid article:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card--large { grid-row: auto; min-height: 590px; }
  .steps-grid { grid-template-columns: 1fr; }
  .link-card { padding: 54px 38px; grid-template-columns: 1fr; }.public-link-preview { justify-self: center; }
  .trust-cards { grid-template-columns: 1fr; }.faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .final-cta-card { padding: 54px 38px; grid-template-columns: 1fr; }.final-actions { justify-content: start; grid-template-columns: repeat(2, auto); }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 500px); }.section { padding: 72px 0; }.site-header .container { width: min(100% - 24px, 500px); }.header-inner { min-height: 70px; }
  .brand-logo { width: 148px; }
  .hero { padding: 64px 0 72px; }.hero-grid { gap: 58px; }.eyebrow { margin-bottom: 16px; font-size: .68rem; }.hero h1 { font-size: clamp(3rem, 13.3vw, 4.2rem); }.hero-lead { margin-top: 23px; font-size: 1rem; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.hero-points { display: grid; gap: 12px; }
  .hero-product { min-height: 515px; }.phone-frame { width: 268px; border-radius: 40px; }.phone-screen { min-height: 506px; padding: 38px 15px 16px; border-radius: 32px; }.service-cover { height: 66px; }.floating-card { padding: 10px 12px; }.floating-card--rating { top: 48px; left: 0; }.floating-card--slot { right: -3px; bottom: 52px; }.app-nav { height: 50px; }
  .benefit-grid article { padding: 25px 14px; }.section-heading { margin-bottom: 36px; }.section-heading h2, .business-copy h2, .link-copy h2, .trust-grid h2, .faq-intro h2, .final-cta h2 { font-size: 2.3rem; }.section-heading > p:last-child, .section-lead, .link-copy > p, .faq-intro > p { font-size: .92rem; }
  .feature-card { min-height: 290px; padding: 24px; }.feature-card--large { min-height: 540px; }.discovery-preview { margin-top: 32px; padding: 15px; }.category-row span { padding: 7px 8px; }
  .business-section { padding-bottom: 0; }.business-grid { gap: 54px; }
  .steps-grid li { padding: 26px; }.link-section { padding-top: 0; }.link-card { width: calc(100% - 20px); padding: 42px 24px; border-radius: 25px; }.link-copy .button { width: 100%; padding-inline: 14px; }.public-link-preview { padding: 13px; }
  .faq-list summary { min-height: 62px; padding: 0 16px; font-size: .83rem; }.faq-list details p { margin-inline: 16px; }
  .final-cta-card { width: calc(100% - 20px); min-height: 430px; padding: 42px 24px; border-radius: 25px; }.final-actions { grid-template-columns: 1fr; }.final-actions .button { width: 100%; }
  .site-footer { padding-top: 58px; }.footer-grid { grid-template-columns: 1fr; gap: 38px; }.footer-grid nav { justify-self: start; min-width: 0; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 360px) {
  .phone-frame { width: 250px; }.floating-card--rating { left: -3px; }.floating-card--slot { right: -8px; }.floating-card small { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Business-first marketing V2 */
.hero { min-height: 720px; padding: 24px 0 88px; }
.hero-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: start; gap: 54px; }
.hero-copy { max-width: 590px; }
.hero h1 { font-size: clamp(3.25rem, 4.4vw, 4.35rem); }
.hero-lead { margin-top: 24px; font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.65; }
.hero-actions { width: min(100%, 340px); margin-top: 28px; display: flex; align-items: stretch; flex-direction: column; gap: 10px; }
.hero-actions .button { width: 100%; }
.hero-action-divider { width: 100%; display: flex; align-items: center; gap: 12px; color: #78909c; font-size: .72rem; font-weight: 700; text-align: center; }
.hero-action-divider::before, .hero-action-divider::after { height: 1px; flex: 1; content: ""; background: #d3e2e5; }
.hero-ecosystem-wrap { position: relative; width: 100%; min-height: 0; aspect-ratio: 1.18; }
.hero-ecosystem { position: absolute; inset: 0; isolation: isolate; overflow: visible; container-type: inline-size; color: var(--navy); font-size: clamp(6px, 1.05cqw, 10px); }
.ecosystem-real-surface { overflow: visible; background: transparent; }
.ecosystem-phone { overflow: visible; background: #fff; box-shadow: 0 2em 4.2em rgb(8 48 61 / 21%); }
.ecosystem-real-surface img, .ecosystem-phone img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ecosystem-real-surface img { border: 1px solid rgb(207 230 233 / 92%); border-radius: inherit; box-shadow: 0 2.8em 6em rgb(16 72 82 / 20%); }
.ecosystem-web { position: absolute; top: 7%; right: 4%; left: 4%; z-index: 1; aspect-ratio: 1672 / 941; border-radius: 2em; }
.ecosystem-web img { object-fit: cover; object-position: center top; }
.ecosystem-phone { position: absolute; z-index: 5; width: 18%; aspect-ratio: 9 / 20; padding: .22em; border: .2em solid #12313e; border-radius: 2.55em; background: #12313e; backface-visibility: hidden; transform-style: preserve-3d; }
.ecosystem-phone--customer { top: 44.5%; left: 7%; transform: none; }
.ecosystem-phone--guest { top: 44.5%; left: 50%; z-index: 6; transform: translateX(-50%); }
.ecosystem-phone--business { top: 44.5%; right: 7%; transform: none; }
.ecosystem-phone img { border-radius: 2.28em; object-position: center top; }
.ecosystem-surface-label { position: absolute; top: -3.7em; left: 50%; width: max-content; padding: .8em 1.2em; border: 1px solid #b8dfe2; border-radius: 999px; color: var(--brand-deep); background: rgb(255 255 255 / 94%); box-shadow: 0 1.4em 3em rgb(18 105 114 / 14%); font-size: .88em; font-weight: 850; transform: translateX(-50%); }
.ecosystem-phone .ecosystem-surface-label { top: auto; bottom: -4.1em; padding: .72em 1.05em; box-shadow: 0 1em 2.2em rgb(18 105 114 / 11%); }
.ecosystem-phone__speaker { position: absolute; top: .72em; left: 50%; z-index: 2; width: 22%; height: .28em; border-radius: 999px; background: #59717b; transform: translateX(-50%); }
.booking-preview { margin-top: 38px; padding: 22px; border: 1px solid #dce9ec; border-radius: 22px; background: #f1f7f8; }
.booking-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.booking-channels span { padding: 10px 12px; border-radius: 10px; color: #70858f; background: #fff; text-align: center; font-size: .62rem; font-weight: 750; }
.booking-channels span.active { color: #fff; background: var(--brand); }
.booking-steps { margin-top: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.booking-steps > span { min-width: 0; padding: 14px 10px; border: 1px solid #dce8eb; border-radius: 13px; background: #fff; }
.booking-steps i { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: var(--brand-deep); background: var(--brand-soft); font-size: .55rem; font-style: normal; font-weight: 800; }
.booking-steps strong, .booking-steps small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.booking-steps strong { margin-top: 11px; color: var(--navy); font-size: .62rem; }
.booking-steps small { margin-top: 5px; color: #7c909a; font-size: .53rem; }
.booking-result { margin-top: 13px; padding: 14px; display: flex; align-items: center; gap: 11px; border-radius: 14px; color: #fff; background: var(--brand-deep); }
.booking-result > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--brand-deep); background: #b9f0f1; font-size: .7rem; font-weight: 850; }
.booking-result strong, .booking-result small { display: block; }
.booking-result strong { font-size: .67rem; }.booking-result small { margin-top: 4px; color: #b7d9dd; font-size: .54rem; }
.appointment-flow { margin-top: 28px; display: grid; gap: 8px; }
.appointment-flow > span { padding: 12px 13px; display: grid; grid-template-columns: 7px 1fr auto; align-items: center; gap: 9px; border: 1px solid #dce8eb; border-radius: 12px; background: #fff; }
.appointment-flow i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }.appointment-flow strong { font-size: .61rem; }.appointment-flow small { color: var(--brand-deep); font-size: .52rem; }
.platform-preview { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.platform-preview > span { min-height: 82px; padding: 13px; display: grid; align-content: center; justify-items: start; gap: 8px; border: 1px solid #dce8eb; border-radius: 13px; background: #fff; }
.platform-preview i { color: var(--brand); font-size: 1.05rem; font-style: normal; }.platform-preview strong { color: var(--navy); font-size: .58rem; line-height: 1.4; }
.feature-mini-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-mini-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgb(8 35 53 / 4%); }
.feature-mini-card .feature-icon { width: 40px; height: 40px; border-radius: 12px; font-size: 1rem; }
.feature-mini-card h3 { margin: 20px 0 0; color: var(--navy); font-size: 1rem; letter-spacing: -.02em; }
.feature-mini-card p { margin: 10px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.62; }
.customer-proof-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 76px; }
.customer-proof-section .business-copy { max-width: 650px; }
.customer-phone-wrap { position: relative; min-height: 590px; }
.customer-phone-wrap .phone-frame { top: 0; width: 310px; }
.customer-proof-section .eyebrow { color: #8fe8eb; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 500px; gap: 38px; }
  .customer-proof-grid { grid-template-columns: 1fr 360px; gap: 44px; }
}

@media (max-width: 840px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 680px; }
  .hero-ecosystem-wrap { max-width: 720px; margin-inline: auto; }
  .hero-ecosystem { transform: none; }
  .customer-proof-grid { grid-template-columns: 1fr; }
  .customer-proof-section .business-copy { max-width: 680px; }
  .customer-phone-wrap { min-height: 560px; }
  .feature-mini-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding-block: 32px 68px; }
  .hero h1 { font-size: clamp(2.85rem, 12.6vw, 3.85rem); }
  .customer-proof-section { padding-bottom: 62px; }
  .customer-proof-grid { gap: 48px; }
  .customer-phone-wrap { min-height: 520px; }
  .feature-card--large { min-height: 0; }
  .booking-preview { margin-top: 30px; padding: 15px; }
  .booking-steps { grid-template-columns: repeat(2, 1fr); }
  .feature-mini-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1600px) {
  .container { width: min(1680px, calc(100% - 96px)); }
  .brand-logo { width: 205px; }
  .desktop-nav { gap: 42px; }
  .desktop-nav a, .header-actions .text-link { font-size: .9rem; }
  .hero { min-height: 820px; padding: 24px 0 96px; }
  .hero-grid { grid-template-columns: minmax(0, 640px) minmax(0, 1fr); gap: 80px; }
  .hero-copy { max-width: 640px; }
  .hero h1 { font-size: clamp(4.45rem, 4vw, 5.6rem); }
  .hero-lead { max-width: 660px; font-size: 1.18rem; }
}

/* General appointment-business and direct-contact V3 */
.sector-bar { padding: 38px 0 42px; }
.sector-intro { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; }
.sector-intro strong { color: var(--navy); font-size: 1rem; }
.sector-intro span { max-width: 620px; color: var(--muted); font-size: .78rem; line-height: 1.55; text-align: right; }
.sector-strip { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.sector-strip span { flex: 1 0 155px; min-height: 46px; padding: 0 16px; display: grid; place-items: center; border: 1px solid #dce9ec; border-radius: 14px; color: var(--brand-deep); background: #f5fbfc; font-size: .72rem; font-weight: 740; text-align: center; }
.channel-proof { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.channel-proof span { padding: 10px 12px; border: 1px solid #dce8eb; border-radius: 10px; color: var(--brand-deep); background: #fff; font-size: .59rem; font-weight: 720; }
.public-url-proof { margin-top: 28px; padding: 15px 16px; overflow: hidden; border: 1px solid #dce8eb; border-radius: 13px; color: #7b8f99; background: #fff; font-size: .63rem; text-overflow: ellipsis; white-space: nowrap; }
.public-url-proof strong { color: var(--brand-deep); }
.link-benefits { margin: 24px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.link-benefits li { display: flex; align-items: center; gap: 9px; color: #c4e6e8; font-size: .8rem; }
.link-benefits li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; color: #c8f5f6; background: rgb(255 255 255 / 12%); font-size: .62rem; font-weight: 850; }
.link-quick-actions { margin-top: 4px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.link-quick-actions span { padding: 10px 5px; border-radius: 9px; color: var(--brand-deep); background: var(--brand-soft); text-align: center; font-size: .53rem; font-weight: 760; }
.contact-section { padding-top: 0; background: #f6fafb; }
.contact-card { min-height: 520px; padding: 70px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; border-radius: 34px; color: #fff; background: linear-gradient(135deg, #087f87, #064b59); box-shadow: var(--shadow); }
.contact-copy h2 { margin: 0; max-width: 670px; color: #fff; font-size: clamp(2.35rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.052em; }
.contact-copy > p:last-of-type { margin: 22px 0 0; max-width: 630px; color: #c5e4e7; font-size: .96rem; line-height: 1.7; }
.social-panel { padding: 30px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 26px; background: rgb(255 255 255 / 8%); box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%); }
.social-panel h3 { margin: 0; color: #fff; font-size: 1.12rem; letter-spacing: -.02em; }
.social-directory { margin-top: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.social-directory a { min-height: 64px; padding: 11px 14px; display: flex; align-items: center; gap: 12px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 16px; color: #eefbfc; background: rgb(255 255 255 / 7%); font-size: .77rem; font-weight: 740; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.social-directory a:hover { border-color: rgb(255 255 255 / 30%); background: rgb(255 255 255 / 13%); transform: translateY(-2px); }
.social-directory a:focus-visible { outline-color: #fff; }
.social-directory a:last-child { grid-column: 1 / -1; }
.social-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-deep); background: #fff; box-shadow: 0 8px 20px rgb(1 46 55 / 14%); }
.social-icon svg { width: 20px; height: 20px; overflow: visible; fill: currentColor; }
.social-link--instagram .social-icon { color: #e4405f; }
.social-link--facebook .social-icon { color: #0866ff; }
.social-link--x .social-icon, .social-link--threads .social-icon, .social-link--tiktok .social-icon { color: #000; }
.social-link--linkedin .social-icon { color: #0a66c2; }
.social-link--youtube .social-icon { color: #f00; }
.desktop-contact-actions { position: fixed; right: 24px; bottom: 24px; z-index: 30; display: grid; justify-items: end; gap: 10px; }
.desktop-contact-action { width: 232px; min-height: 50px; padding: 0 17px; display: flex; align-items: center; gap: 11px; border: 1px solid rgb(255 255 255 / 70%); border-radius: 999px; color: #fff; box-shadow: 0 16px 35px rgb(5 63 60 / 20%); font-size: .72rem; font-weight: 780; transition: width 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.desktop-contact-action:hover { width: 240px; transform: translateY(-1px); box-shadow: 0 18px 38px rgb(5 45 60 / 26%); }
.desktop-contact-action--whatsapp { background: #149b82; }
.desktop-contact-action--phone { background: #1976c8; }
.desktop-contact-action--email { background: #7357b7; }
.desktop-contact-action__icon { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 50%; background: #fff; }
.desktop-contact-action__icon svg { width: 16px; height: 16px; fill: currentColor; }
.desktop-contact-action--whatsapp .desktop-contact-action__icon { color: #149b82; }
.desktop-contact-action--phone .desktop-contact-action__icon { color: #1976c8; }
.desktop-contact-action--email .desktop-contact-action__icon { color: #7357b7; }
.desktop-contact-action--email .desktop-contact-action__icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 840px) {
  .sector-intro { align-items: flex-start; flex-direction: column; gap: 10px; }
  .sector-intro span { text-align: left; }
  .contact-card { padding: 52px 38px; grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 560px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .sector-bar { padding: 30px 0 34px; }
  .sector-strip { gap: 8px; }
  .sector-strip span { flex-basis: calc(50% - 8px); min-height: 42px; padding-inline: 9px; font-size: .64rem; }
  .contact-card { width: calc(100% - 20px); min-height: 0; padding: 42px 24px; border-radius: 25px; }
  .social-panel { padding: 20px; }
  .social-directory { grid-template-columns: 1fr; }
  .social-directory a:last-child { grid-column: auto; }
  .desktop-contact-actions { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); left: auto; width: auto; max-width: none; z-index: 50; justify-items: center; gap: 8px; transform: none; }
  .desktop-contact-action, .desktop-contact-action:hover { width: 52px; min-height: 52px; padding: 0; justify-content: center; gap: 0; border-radius: 50%; transform: none; }
  .desktop-contact-action > span:last-child { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .desktop-contact-action__icon { width: 34px; height: 34px; flex-basis: 34px; }
  .desktop-contact-action__icon svg { width: 19px; height: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
