/* NTA Implant — HR Distributor Landing Page
   Design tokens sourced from the live site's Elementor global kit
   (nta2.techtalya.com/wp-content/uploads/elementor/css/post-112.css) */

/* Self-hosted Montserrat (latin + latin-ext for č ć đ š ž) — avoids querying
   Google Fonts before consent and keeps LCP text render on the first paint. */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-ext-600-normal.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-ext-700-normal.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-ink: #2b2a29;
  --color-navy: #1c202e;
  --color-navy-2: #262b3e;
  --color-navy-3: #30364e;
  --color-accent: #e6bc85;
  --color-accent-dark: #b99c69;
  --color-white: #ffffff;
  --color-bg-alt: #f7f5f2;
  --color-bg-alt-2: #f3f3f3;
  --color-border: #e5e1da;
  --color-success: #2f6f4e;

  --font-base: "Montserrat", "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --radius: 0px;
  --shadow-card: 0 1px 3px rgba(43, 42, 41, 0.08), 0 8px 24px rgba(43, 42, 41, 0.06);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-base);
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0 0 var(--space-2);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p {
  margin: 0 0 var(--space-2);
  color: #4c4a47;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-6) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.section--navy p {
  color: #cfd2dc;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: rgba(230, 188, 133, 0.15);
  padding: 6px 14px;
  margin-bottom: var(--space-2);
}

.section--navy .eyebrow {
  color: var(--color-accent);
  background: rgba(230, 188, 133, 0.14);
}

.section-head {
  max-width: 720px;
  margin: 0 0 var(--space-4);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.section--navy .btn--outline,
.hero .btn--outline,
.cookie-banner .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.section--navy .btn--outline:hover,
.hero .btn--outline:hover,
.cookie-banner .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

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

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 14px 0;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 16px rgba(28, 32, 46, 0.08);
  transition: max-height 0.25s ease;
}

.site-header__nav.is-open {
  max-height: 320px;
}

.site-header__nav a {
  padding: 14px var(--space-3);
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

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

@media (min-width: 620px) {
  .site-header__nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
    margin-right: auto;
    margin-left: var(--space-4);
    max-height: none;
    overflow: visible;
    background: none;
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header__nav a {
    padding: 0;
    border-top: 0;
    font-size: 0.9rem;
  }
}

.site-header__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 620px) {
  .site-header__meta {
    gap: var(--space-3);
  }
}

.site-header__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--color-border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 620px) {
  .site-header__toggle {
    display: none;
  }
}

.site-header__phone {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}

@media (min-width: 720px) {
  .site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}

/* Professional notice */
.pro-notice {
  background: var(--color-navy);
  color: #d8dbe4;
  text-align: center;
  padding: 10px var(--space-3);
}

.pro-notice__tagline {
  display: block;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-accent);
}

.pro-notice__compliance {
  display: block;
  font-size: 0.78rem;
  margin-top: 2px;
}

.pro-notice a { color: var(--color-accent); text-decoration: underline; }

/* Hero */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28, 32, 46, 0.88) 0%, rgba(28, 32, 46, 0.74) 45%, rgba(28, 32, 46, 0.52) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-6) 0 var(--space-5);
  max-width: 760px;
}

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

.hero__lead {
  font-size: 1.1rem;
  color: #e7e9f0;
  max-width: 640px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin: var(--space-4) 0;
  padding: 0;
  list-style: none;
}

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

.hero__facts li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  border-left: 2px solid var(--color-accent);
  padding-left: 10px;
}

.hero__notice {
  margin-top: var(--space-4);
  font-size: 0.8rem;
  color: #b7bacb;
  max-width: 560px;
}

/* Cards grid */
.grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

.card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 188, 133, 0.16);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.card p {
  font-size: 0.92rem;
  margin: 0;
}

/* Product list */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-3);
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin: var(--space-2) 0;
  background: var(--color-bg-alt);
}

.product-card__image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Process steps */
.steps {
  display: grid;
  gap: var(--space-3);
  counter-reset: step;
  grid-template-columns: 1fr;
}

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

.step {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-3) var(--space-3);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: var(--space-3);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
}

.step h3 { margin-top: var(--space-1); }
.step p { font-size: 0.92rem; margin: 0; }

/* Form */
.form-section {
  background: var(--color-bg-alt);
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-2);
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
}

.field label .req {
  color: var(--color-accent-dark);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-base);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-ink);
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: var(--space-3) 0;
  font-size: 0.85rem;
  color: #4c4a47;
}

.consent input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-note {
  font-size: 0.8rem;
  color: #79766f;
  margin-top: var(--space-2);
}

.form-status {
  display: none;
  padding: 12px 14px;
  margin-bottom: var(--space-2);
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.form-status--error {
  display: block;
  background: #fbeceb;
  border-color: #e3b3af;
  color: #9a2f27;
}

.form-status--success {
  display: block;
  background: #eaf3ee;
  border-color: #b6d7c4;
  color: var(--color-success);
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-2) 0;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent-dark);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding-bottom: var(--space-2);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: #c9cbd6;
  padding: var(--space-5) 0 var(--space-3);
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand img {
  height: 34px;
  margin-bottom: var(--space-2);
}

.site-footer__brand p {
  color: #a7aab8;
  font-size: 0.85rem;
  max-width: 320px;
}

.site-footer__links h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__links a {
  font-size: 0.88rem;
  color: #c9cbd6;
}

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

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  font-size: 0.78rem;
  color: #8d90a0;
}

.site-footer__social {
  display: flex;
  gap: 12px;
}

.site-footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  color: var(--color-white);
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--color-navy);
  color: #e7e9f0;
  padding: var(--space-2) var(--space-3);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
}

.cookie-banner p {
  color: #d8dbe4;
  font-size: 0.85rem;
  margin: 0;
  flex: 1 1 320px;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* Video section */
.video-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-navy) center / cover no-repeat;
  cursor: pointer;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: var(--space-2);
}

.video-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-3) var(--space-3) var(--space-2);
  background: linear-gradient(to top, rgba(28, 32, 46, 0.92), rgba(28, 32, 46, 0));
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.05rem;
}

.video-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

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

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-navy) center / cover no-repeat;
  cursor: pointer;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-2);
  background: linear-gradient(to top, rgba(28, 32, 46, 0.92), rgba(28, 32, 46, 0));
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.88rem;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(230, 188, 133, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.video-card .video-play {
  width: 44px;
  height: 44px;
}

.video-hero:hover .video-play,
.video-card:hover .video-play {
  background: var(--color-accent-dark);
}

.video-play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--color-navy);
  margin-left: 3px;
}

.video-card .video-play::after {
  border-width: 7px 0 7px 12px;
}

.video-hero iframe,
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-consent-note {
  font-size: 0.78rem;
  color: #79766f;
  margin-top: var(--space-1);
}

/* Fair photo gallery */
.fair-gallery {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--space-3);
}

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

.fair-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 620px) {
  .fair-card:nth-child(4n+2),
  .fair-card:nth-child(4n+3) {
    aspect-ratio: 4 / 3;
  }
}

.fair-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fair-card:hover img {
  transform: scale(1.04);
}

.fair-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Distributor support photo cards */
.support-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.support-card:hover img {
  transform: scale(1.05);
}

.support-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 14, 22, 0.85), rgba(12, 14, 22, 0.1) 60%);
}

.support-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 12px 14px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
}

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(28, 32, 46, 0.28);
  z-index: 90;
  transition: bottom 0.2s ease, transform 0.15s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.06);
}

#cookieBanner.is-visible ~ .whatsapp-fab {
  bottom: 100px;
}

@media (max-width: 619px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  #cookieBanner.is-visible ~ .whatsapp-fab {
    bottom: 170px;
  }
}

/* Utilities */
.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;
}

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

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

@media (max-width: 619px) {
  .section { padding: var(--space-5) 0; }
  .hero__inner { padding: var(--space-5) 0 var(--space-4); }
  .eyebrow {
    padding: 9px 16px;
    letter-spacing: 0.07em;
    font-size: 0.72rem;
    line-height: 1.5;
  }
}
