/* ==========================================================================
   Troytec — styles.css
   Design tokens: white background, #1B1A19 dark, #24A42C accent.
   Mobile-first. No frameworks, no build step.
   ========================================================================== */

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --dark: #1b1a19;
  --body: rgba(27, 26, 25, 0.85);
  --muted: rgba(27, 26, 25, 0.62);
  --line: rgba(27, 26, 25, 0.12);
  --accent: #24a42c;
  --accent-dark: #1c8422;
  /* Lighter accent for use ON the dark header, where darkening a green
     button would drop its dark label below AA. */
  --accent-light: #2fbf39;
  --accent-soft: rgba(36, 164, 44, 0.08);

  /* On-dark (header) palette */
  --on-dark: rgba(255, 255, 255, 0.86);
  --on-dark-line: rgba(255, 255, 255, 0.14);
  --danger: #c53434;

  --maxw: 1140px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 1px 2px rgba(27, 26, 25, 0.04), 0 8px 24px rgba(27, 26, 25, 0.06);
  --shadow-hover: 0 2px 4px rgba(27, 26, 25, 0.06), 0 14px 34px rgba(27, 26, 25, 0.1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --space-section: 72px;
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

/* Green AS TEXT on a light ground uses --accent-dark (4.81:1); plain --accent
   is 3.27:1 and only safe as a background or a decorative graphic. */
a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
}

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

/* Light chip: the header behind it is dark, so a dark skip link would vanish. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 200;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* --- Layout --------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

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

.section--alt {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__cta {
  margin-top: 52px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

/* Green buttons carry DARK labels, not white: #1B1A19 on #24A42C is 5.37:1,
   white on it is only 3.27:1. Hover lightens rather than darkens, because
   darkening the green would drag the dark label back below AA. */
.btn--primary {
  background: var(--accent);
  color: var(--dark);
}

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

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--line);
}

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

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

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

.btn__icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

/* --- Header / nav --------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 26, 25, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--on-dark-line);
}

/* Focus rings need to read against the dark bar, not the page. */
.site-header :focus-visible {
  outline-color: var(--accent-light);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

/* One logo everywhere: the light lockup, in the dark header and the dark
   footer. Both sit on #1B1A19, so the same file works in both. */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo:hover,
.logo:focus-visible {
  text-decoration: none;
}

.logo__img {
  height: 30px;
  width: auto;
  /* Wide lockup (~3.9:1) — cap the width on very narrow phones so the
     hamburger always has room. */
  max-width: 55vw;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: none;
  /* 0.38 alpha composites to ~3.6:1 against the bar — above the 3:1 floor
     for a non-text UI boundary. */
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav {
  display: none;
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  background: var(--dark);
  border-bottom: 1px solid var(--on-dark-line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  padding: 16px 20px 22px;
}

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

.nav__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__link {
  display: block;
  padding: 10px 2px;
  color: var(--on-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--on-dark-line);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--accent-light);
  text-decoration: none;
}

.nav__link.is-active {
  color: var(--accent-light);
  font-weight: 600;
}

/* --- Services dropdown ---------------------------------------------------- */

/* "Services" is a real page AND a menu parent, so the label stays a link and
   a separate disclosure button opens the submenu. */
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--on-dark-line);
}

.nav__row .nav__link {
  flex: 1;
  border-bottom: 0;
}

.nav__disclosure {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  background: none;
  border: 0;
  color: var(--on-dark);
  cursor: pointer;
}

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

.nav__chevron {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav__item.is-open .nav__chevron {
  transform: rotate(180deg);
}

.nav__sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 4px 0 6px 14px;
}

.nav__item.is-open .nav__sub {
  display: block;
}

.nav__sublink {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 2px;
  color: var(--on-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

a.nav__sublink:hover,
a.nav__sublink:focus-visible {
  color: var(--accent-light);
  text-decoration: none;
}

a.nav__sublink.is-active {
  color: var(--accent-light);
  font-weight: 600;
}

/* CURRENTLY UNUSED. Microsoft 365 and AI Solutions were pulled from the
   header and footer menus; the rules are kept for when they return. They
   still appear as cards on services.html (.card--soon / .tag-soon).
   Not a link when in use: no href, no pointer, muted but still 6:1 against
   the bar so it stays readable. */
.nav__sublink--soon {
  color: rgba(255, 255, 255, 0.58);
  cursor: default;
}

.soon {
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  padding-block: 64px 72px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--white) 70%);
}

.hero__inner {
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero__sub {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Cards / grid --------------------------------------------------------- */

.grid {
  display: grid;
  gap: 22px;
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.card h3 {
  margin-bottom: 12px;
}

.card__desc {
  margin-bottom: 22px;
}

/* --- "Coming soon" cards -------------------------------------------------- */

/* Nothing to click yet, so the card does not lift on hover either. */
.card--soon {
  background: var(--off-white);
  box-shadow: none;
}

.card--soon:hover {
  box-shadow: none;
  transform: none;
}

.tag-soon {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 15px;
  border: 1px dashed rgba(27, 26, 25, 0.25);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Closing CTA banner --------------------------------------------------- */

.cta-banner {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 64px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  max-width: 17ch;
  margin-inline: auto;
}

.cta-banner p {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* --- Testimonials --------------------------------------------------------- */

.testimonial__quote {
  flex: 1;
  margin: 0 0 22px;
  font-size: 1.02rem;
}

.testimonial__quote::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 18px;
}

.testimonial__name {
  margin: 0 0 16px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
}

.placeholder {
  color: var(--muted);
  font-style: italic;
}

/* --- Services ------------------------------------------------------------- */

.service {
  scroll-margin-top: 96px;
  padding: 30px;
}

.service__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.service__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service__desc {
  margin-bottom: 22px;
}

.list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* --- Pricing (supports a single price OR a tiered table) ------------------ */

.pricing {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pricing__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Single-price variant */
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price__amount {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price__period {
  font-size: 0.95rem;
  color: var(--muted);
}

.price__note {
  width: 100%;
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Tiered-table variant */
.table-scroll {
  overflow-x: auto;
}

.tiers {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tiers caption {
  text-align: left;
  color: var(--muted);
  font-size: 0.88rem;
  padding-bottom: 8px;
}

.tiers th,
.tiers td {
  text-align: left;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--line);
}

.tiers thead th {
  color: var(--dark);
  font-weight: 600;
}

.tiers tbody th {
  color: var(--dark);
  font-weight: 600;
}

.tiers td:last-child,
.tiers th:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}

.tiers tbody tr:last-child th,
.tiers tbody tr:last-child td {
  border-bottom: 0;
}

/* --- Pricing section ------------------------------------------------------ */

.pricing-section {
  scroll-margin-top: 96px;
}

.pricing-card {
  position: relative;
  padding: 32px 28px;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-hover);
}

.badge {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  /* accent-dark, not accent: white-on-accent falls short of AA at this size */
  background: var(--accent-dark);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card__offer {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.pricing-card__sub {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.pricing-card__vat {
  margin: 0 0 22px;
  font-size: 0.87rem;
  color: var(--muted);
}

/* Feature lists — the tick SVG is decorative, the text carries the meaning. */
.features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.97rem;
  line-height: 1.55;
}

.features svg {
  width: 20px;
  height: 20px;
  margin-top: 0.22em;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Items still awaiting confirmation — remove the marker once settled. */
.confirm {
  color: var(--muted);
}

.confirm__tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Custom builds table */
.pricing-block {
  margin-top: 64px;
}

.pricing-block__head {
  max-width: 620px;
  margin-bottom: 28px;
}

.pricing-block__head h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 8px;
}

.tiers--services {
  min-width: 460px;
}

.tiers--services thead th {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.tiers--services tbody th {
  font-weight: 500;
  color: var(--body);
  padding-right: 24px;
}

.tiers--services tbody td {
  font-weight: 600;
  color: var(--dark);
}

.notes {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.pricing-block .btn {
  margin-top: 26px;
}

/* Payment terms */
.terms {
  margin-top: 48px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.terms h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.terms ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

/* --- Contact form --------------------------------------------------------- */

.contact {
  scroll-margin-top: 96px;
}

.contact__grid {
  display: grid;
  gap: 40px;
}

.contact__details {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.97rem;
}

.form {
  display: grid;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

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

.field .optional {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

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

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

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field__error {
  font-size: 0.84rem;
  color: var(--danger);
}

.field__error:empty {
  display: none;
}

.form__note {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
}

.form__status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-dark);
}

.form__status:empty {
  display: none;
}

/* --- WhatsApp ------------------------------------------------------------- */

.btn--whatsapp {
  background: var(--accent);
  color: var(--dark);
}

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

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 6px 20px rgba(27, 26, 25, 0.22);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--accent-light);
  color: var(--dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: none;
}

/* Icon-only on phones so the floating button stays unobtrusive */
.whatsapp-float__label {
  display: none;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 56px 28px;
  font-size: 0.95rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer .logo {
  margin-bottom: 14px;
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* Mirrors the header's Services submenu, indented under its parent. */
.footer__sublist {
  list-style: none;
  margin: 10px 0 2px;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 10px;
}

/* CURRENTLY UNUSED, like .nav__sublink--soon above. Kept for when Microsoft
   365 and AI Solutions go back into the menus. */
.footer__soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .btn--whatsapp {
  margin-top: 6px;
}

/* --- Breakpoints ---------------------------------------------------------- */

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

@media (min-width: 640px) {
  .whatsapp-float {
    padding: 13px 20px 13px 16px;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float__label {
    display: inline;
  }
}

@media (min-width: 860px) {
  :root {
    --space-section: 96px;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-banner {
    padding-block: 84px;
  }

  .contact__grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 56px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }

  .logo__img {
    height: 34px;
    max-width: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 26px;
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: none;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 26px;
    margin: 0;
  }

  .nav__link {
    padding: 4px 0;
    border-bottom: 2px solid transparent;
  }

  .nav__link.is-active {
    border-bottom-color: var(--accent-light);
  }

  .nav__item {
    position: relative;
  }

  .nav__row {
    gap: 3px;
    border-bottom: 0;
  }

  .nav__disclosure {
    padding: 4px 0 4px 1px;
  }

  .nav__sub {
    position: absolute;
    top: calc(100% + 16px);
    left: -12px;
    min-width: 234px;
    margin: 0;
    padding: 8px;
    background: var(--dark);
    border: 1px solid var(--on-dark-line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  /* Invisible bridge over the gap, so the menu does not close as the
     pointer travels from the label down to it. */
  .nav__sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }

  .nav__item:hover .nav__sub,
  .nav__item:focus-within .nav__sub,
  .nav__item.is-open .nav__sub {
    display: block;
  }

  .nav__sublink {
    padding: 9px 12px;
    border-radius: var(--radius);
  }

  a.nav__sublink:hover,
  a.nav__sublink:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding-block: 96px 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
