/* =========================================================
   SCTEKNOLOGY — stylesheet
   Palette: blu/grigio scuro + accento arancio vivace
   ========================================================= */

:root {
  --color-primary-dark: #0a1930;
  --color-primary: #123a6b;
  --color-primary-light: #1c4f8f;
  --color-secondary: #1e293b;
  --color-surface: #f4f6f9;
  --color-surface-alt: #e9edf3;
  --color-border: #dde3ec;
  --color-text: #1a2333;
  --color-text-light: #57677e;
  --color-text-inverse: #f5f7fa;
  --color-accent: #ff6a2b;
  --color-accent-dark: #e0521a;
  --color-accent-contrast: #ffffff;
  --color-success: #1f9d55;
  --color-error: #d92d20;
  --color-white: #ffffff;

  --font-base: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(10, 25, 48, 0.08);
  --shadow-md: 0 6px 18px rgba(10, 25, 48, 0.12);
  --shadow-lg: 0 20px 45px rgba(10, 25, 48, 0.18);

  --header-height: 74px;
  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--color-primary-dark);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
  cursor: pointer;
}

section {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

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

.section {
  padding: 72px 0;
}

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

.section-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  box-shadow: 0 8px 20px rgba(255, 106, 43, 0.35);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-light);
}

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

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

.btn--sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

/* ---------- Top bar (phone strip) ---------- */
.topbar {
  background: var(--color-primary-dark);
  color: #b9c6da;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.topbar a {
  color: #dfe7f2;
  font-weight: 600;
}

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

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__hours {
  display: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-lg);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  flex-shrink: 0;
}

.logo__text-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #9fb0c7;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: #d7e0ee;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.98rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.header-phone svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.header-phone__text {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav .btn {
    margin-top: 10px;
  }
}

@media (min-width: 700px) {
  .header-phone {
    width: auto;
    height: auto;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }
  .header-phone__text {
    display: inline;
  }
  .topbar__hours {
    display: inline;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #163b6b 0%, var(--color-primary-dark) 55%), var(--color-primary-dark);
  color: var(--color-white);
  overflow: hidden;
  padding: 90px 0 100px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 43, 0.14);
  border: 1px solid rgba(255, 106, 43, 0.4);
  color: #ffb28e;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  max-width: 16ch;
}

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

.hero p {
  color: #c3cee0;
  font-size: 1.12rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-top: 44px;
}

.hero__stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--color-white);
}

.hero__stats div span {
  font-size: 0.85rem;
  color: #9fb0c7;
}

@media (min-width: 700px) {
  .hero__stats {
    grid-template-columns: repeat(3, auto);
  }
}

.hero__visual {
  display: none;
}

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

  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 340px;
  }

  .hero__visual-card {
    width: 100%;
    max-width: 540px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-lg);
  }

  .hero__visual-logo {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ---------- Service categories (Home) ---------- */
.categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.category-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.category-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  color: var(--color-white);
  flex-shrink: 0;
}

.category-card__icon--hw {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.category-card__icon--sw {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.category-card__head h3 {
  margin: 0 0 4px;
  font-size: 1.22rem;
}

.category-card__head p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 520px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.service-item:hover {
  background: var(--color-surface-alt);
}

.service-item__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--color-surface-alt);
  color: var(--color-primary);
  flex-shrink: 0;
}

.category-card__icon--sw ~ * .service-item__icon,
.category-card--sw .service-item__icon {
  color: var(--color-accent-dark);
}

.service-item__body strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 2px;
}

.service-item__body span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---------- Punti di forza ---------- */
.strengths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

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

.strength-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.strength-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 106, 43, 0.12);
  color: var(--color-accent-dark);
  margin-bottom: 14px;
}

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

.strength-card p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.cta-band p {
  color: #c3cee0;
  margin: 0;
}

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

/* ---------- Cards generic (Chi Siamo) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.about-hero__art {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  padding: 30px;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.skill-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.skill-bar__track {
  height: 9px;
  border-radius: 999px;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.skill-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: 2px solid var(--color-border);
  margin-left: 8px;
}

.timeline li {
  position: relative;
  padding: 4px 0 28px 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline h4 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.timeline span {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* ---------- Dove Siamo ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-surface-alt);
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-row h4 {
  margin: 0 0 3px;
  font-size: 0.98rem;
}

.info-row p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  color: var(--color-text);
  font-weight: 600;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Contatti ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-method__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-method h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-method a,
.contact-method p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

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

/* ---------- Forms ---------- */
.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .field--full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-text);
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(18, 58, 107, 0.15);
}

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

.field small.hint {
  display: block;
  margin-top: 5px;
  color: var(--color-text-light);
  font-size: 0.78rem;
}

.field .error-msg {
  display: none;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--color-error);
  font-weight: 600;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.field.has-error .error-msg {
  display: block;
}

.form-footer-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status--success {
  display: block;
  background: rgba(31, 157, 85, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(31, 157, 85, 0.3);
}

.form-status--error {
  display: block;
  background: rgba(217, 45, 32, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(217, 45, 32, 0.3);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

fieldset legend {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-surface);
  transition: all 0.15s ease;
}

.radio-pill input:checked + span {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: rgba(18, 58, 107, 0.08);
}

.radio-pill input:focus-visible + span {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: #b9c6da;
  padding: 56px 0 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }
}

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

.footer-brand p {
  color: #92a2ba;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #b9c6da;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

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

.footer-phone-cta {
  background: rgba(255, 106, 43, 0.12);
  border: 1px solid rgba(255, 106, 43, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
}

.footer-phone-cta span {
  display: block;
  font-size: 0.78rem;
  color: #ffb28e;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-phone-cta a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 106, 43, 0.25);
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #b9c6da !important;
}

.footer-whatsapp-link svg {
  color: #25d366;
  flex-shrink: 0;
}

.footer-whatsapp-link:hover {
  color: var(--color-white) !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #7c8ba3;
}

.footer-bottom a {
  color: #7c8ba3;
}

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

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.badge-note {
  display: inline-block;
  background: #fff3ea;
  color: var(--color-accent-dark);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

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

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

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