/* ============================================================
   Layout globale: header, navigazione, breadcrumb, footer, bottoni
   Mobile-first: default = mobile, poi media query per desktop
   ============================================================ */

:root {
  --mp-yellow: #f8c000;
  --mp-yellow-soft: #fdd255;
  --mp-ink: #080d30;
  --mp-bg-0: #070b22;
  --mp-bg-1: #0c1136;
  --mp-bg-2: #10174a;
  --mp-bg-3: #1a1f5a;
  --mp-teal: #007ea7;
  --mp-fg-soft: #b7b9cd;
  --mp-fg-mute: #7a7d99;
  --mp-line-dk: rgba(255, 255, 255, 0.1);
  --mp-line-dk-2: rgba(255, 255, 255, 0.14);
  --mp-font-display: "Montserrat", sans-serif;
  --mp-font-body: "Roboto", sans-serif;
  --mp-radius-md: 14px;
  --mp-radius-pill: 100px;
  --mp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--mp-bg-0, var(--mp-ink));
  color: #e8e9f2;
  font-family: var(--mp-font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: relative;
  z-index: 50;
  padding: 16px 0;
}

body.nav-open .site-header {
  z-index: 110;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-right: auto;
  min-width: 0;
}

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

/* Icona cuffie / call (prima del menu hamburger su mobile) */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--mp-yellow);
  color: var(--mp-ink);
  flex-shrink: 0;
  transition: background 0.2s var(--mp-ease), transform 0.2s var(--mp-ease),
    box-shadow 0.2s var(--mp-ease);
  box-shadow: 0 6px 18px rgba(248, 192, 0, 0.25);
}

.header-call-btn:hover {
  background: var(--mp-yellow-soft);
  transform: translateY(-1px);
}

.header-call-btn__icon {
  display: block;
  width: 22px;
  height: 22px;
}

.brand img {
  height: 36px;
  width: auto;
}

/* ============================================================
   Bottoni
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mp-font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--mp-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--mp-ease), background 0.2s var(--mp-ease),
    color 0.2s var(--mp-ease), box-shadow 0.2s var(--mp-ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--mp-yellow);
  color: var(--mp-ink);
  box-shadow: 0 8px 24px rgba(248, 192, 0, 0.22);
}

.btn-primary:hover {
  background: var(--mp-yellow-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

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

/* ============================================================
   Nav toggle hamburger (default visibile su mobile)
   ============================================================ */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--mp-bg-2, #10174a);
  color: var(--mp-fg-soft, #b7b9cd);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.nav-toggle:hover {
  border-color: var(--mp-yellow, #f8c000);
  color: var(--mp-yellow, #f8c000);
}

.nav-toggle__icon {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: background 0.2s;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after { top: 6px; }

body.nav-open .nav-toggle__icon { background: transparent; }
body.nav-open .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Backdrop
   ============================================================ */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 13, 48, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.nav-open .nav-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   Main nav — nascosta di default su mobile
   ============================================================ */
.main-nav {
  display: none !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 92vw);
  margin: 0;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
}

body.nav-open .main-nav {
  display: flex !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(340px, 92vw);
  margin: 0;
  padding: 0 0 28px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--mp-bg-2, #10174a);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  animation: nav-slide-in 0.28s ease;
  pointer-events: auto;
  visibility: visible;
}

body.nav-open .site-header .main-nav a {
  color: #e8e9f2;
}

body.nav-open .site-header .main-nav > a,
body.nav-open .site-header .main-nav .nav-item > a {
  color: var(--mp-fg-soft);
}

@keyframes nav-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

body.nav-open { overflow: hidden; }

/* Testata drawer mobile: logo home + chiudi */
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  background: var(--mp-bg-2, #10174a);
  position: sticky;
  top: 0;
  z-index: 2;
}

.nav-drawer-home {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.nav-drawer-home img {
  height: 32px;
  width: auto;
  max-width: 100%;
}

.nav-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  color: var(--mp-fg-soft, #b7b9cd);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-drawer-close:hover {
  border-color: var(--mp-yellow, #f8c000);
  color: var(--mp-yellow, #f8c000);
  background: rgba(255, 255, 255, 0.04);
}

.nav-drawer-close__icon {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}

.nav-drawer-close__icon::before,
.nav-drawer-close__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-drawer-close__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-drawer-close__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Link di primo livello nel drawer mobile */
.site-header .main-nav > a,
.site-header .main-nav .nav-item > a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--mp-fg-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: color 0.2s;
}

.site-header .main-nav > a:hover,
.site-header .main-nav .nav-item > a:hover {
  color: var(--mp-yellow);
}

.site-header .main-nav .nav-item { width: 100%; }

/* Dropdown mobile: statico, aperto via .is-open */
.site-header .dropdown-menu {
  position: static;
  left: auto;
  top: auto;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
}

.site-header .dropdown-menu::before { display: none; }
.site-header .dropdown:hover .dropdown-menu { display: none; }
.site-header .dropdown.is-open > .dropdown-menu { display: flex; }

.site-header .dropdown-menu a {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mp-fg-soft);
  transition: color 0.2s, background 0.2s;
}

.site-header .dropdown-menu a:hover {
  color: var(--mp-yellow);
  background: rgba(255, 255, 255, 0.04);
}

/* Dropdown sub mobile */
.dropdown-sub { position: relative; }
.dropdown-sub > a {
  display: block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mp-fg-soft);
  transition: color 0.2s, background 0.2s;
}
.dropdown-sub > a:hover { color: var(--mp-yellow); }

.dropdown-sub-menu {
  display: none;
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
  padding: 0;
}

.dropdown-sub:hover .dropdown-sub-menu { display: none; }
.dropdown-sub.is-open > .dropdown-sub-menu { display: flex; flex-direction: column; }

.dropdown-sub-menu a {
  display: block;
  padding: 10px 40px;
  font-size: 13px;
  color: var(--mp-fg-soft);
  transition: color 0.2s, background 0.2s;
}

.dropdown-sub-menu a:hover {
  color: var(--mp-yellow);
  background: rgba(255, 255, 255, 0.04);
}

/* Indicatori apertura/chiusura */
.site-header .nav-item.dropdown > a::after { content: " ▾"; font-size: 11px; opacity: 0.6; }
.site-header .dropdown-sub > a::after { content: " ▸"; font-size: 11px; opacity: 0.5; }
.site-header .dropdown.is-open > a::after { content: " ▴"; }
.site-header .dropdown-sub.is-open > a::after { content: " ▾"; }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--mp-font-body);
  font-size: 12px;
  color: var(--mp-fg-mute);
  padding: 8px 0 0;
  margin-top: 0;
}

.breadcrumb a { color: var(--mp-fg-mute); transition: color 0.2s var(--mp-ease); }
.breadcrumb a:hover { color: var(--mp-yellow); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--mp-fg-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: 32px;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.foot-brand img { height: 32px; margin-bottom: 14px; }

.foot-brand p {
  color: var(--mp-fg-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0;
}

.foot-col h4 {
  font-family: var(--mp-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}

.foot-col h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--mp-ease);
}

.foot-col h4 a:hover {
  color: var(--mp-yellow);
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: 14px;
  color: var(--mp-fg-soft);
  transition: color 0.2s var(--mp-ease);
}

.foot-col a:hover { color: var(--mp-yellow); }

.foot-base {
  border-top: 1px solid var(--mp-line-dk);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--mp-fg-mute);
}

.foot-base a { color: var(--mp-fg-mute); transition: color 0.2s var(--mp-ease); }
.foot-base a:hover { color: var(--mp-yellow); }

/* ============================================================
   Tablet (min-width: 640px)
   ============================================================ */
@media (min-width: 640px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-base { flex-direction: row; justify-content: space-between; }
  .btn { font-size: 14px; padding: 12px 22px; }
}

/* ============================================================
   Desktop (min-width: 1025px) — menu orizzontale
   ============================================================ */
@media (min-width: 1025px) {
  .site-header { padding: 22px 0; }
  .site-header .inner {
    gap: 28px;
  }

  .brand img { height: 40px; }

  .header-actions {
    gap: 0;
  }

  .header-call-btn {
    width: 44px;
    height: 44px;
  }

  /* Toggle nascosto su desktop */
  .nav-toggle { display: none !important; }

  /* Menu orizzontale a destra (accanto all'icona call) */
  .main-nav {
    display: flex !important;
    position: static;
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    pointer-events: auto;
    visibility: visible;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: none;
    overflow: visible;
  }

  .site-header .main-nav > a,
  .site-header .main-nav .nav-item > a {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    text-align: center;
  }

  .site-header .main-nav .nav-item {
    width: auto;
    display: flex;
    align-items: center;
  }

  .nav-drawer-head { display: none; }

  /* Dropdown desktop */
  .site-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    width: auto;
    padding: 8px 0;
    border: 1px solid var(--mp-line-dk-2);
    border-radius: var(--mp-radius-md);
    background: var(--mp-bg-2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    display: none;
    flex-direction: column;
  }

  .site-header .dropdown-menu::before {
    display: block;
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  .site-header .dropdown:hover .dropdown-menu { display: flex; }
  .site-header .dropdown.is-open > .dropdown-menu { display: flex; }

  .site-header .dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Dropdown sub desktop */
  .dropdown-sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 210px;
    width: auto;
    background: var(--mp-bg-2);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 8px 0;
    z-index: 200;
  }

  .dropdown-sub:hover .dropdown-sub-menu { display: block; }
  .dropdown-sub.is-open > .dropdown-sub-menu { display: block; }

  .dropdown-sub-menu a { padding: 10px 16px; font-size: 14px; }

  /* Nasconde indicatori su desktop */
  .site-header .nav-item.dropdown > a::after,
  .site-header .dropdown-sub > a::after,
  .site-header .dropdown.is-open > a::after,
  .site-header .dropdown-sub.is-open > a::after { content: none; }

  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .foot-brand img { height: 36px; }
  .site-footer { padding: 64px 0 28px; }
  .foot-grid { margin-bottom: 48px; }
}

/* ── Modal brief richiesta ── */
.brief-request-modal__context {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 192, 0, 0.1);
  border: 1px solid rgba(248, 192, 0, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ── Modal prenotazione call ── */
body.call-modal-open {
  overflow: hidden;
}

.call-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.call-modal[hidden] {
  display: none !important;
}

.call-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 28, 0.72);
  backdrop-filter: blur(4px);
}

.call-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(94vh, 920px);
  overflow: auto;
  background: linear-gradient(165deg, var(--mp-bg-2) 0%, var(--mp-bg-1) 100%);
  border: 1px solid var(--mp-line-dk-2, rgba(255, 255, 255, 0.12));
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.45);
  padding: 20px 18px 28px;
}

.call-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.call-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.call-modal__layout {
  display: grid;
  gap: 24px;
}

.call-modal__intro h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
}

.call-modal__intro p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.call-modal__bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
}

.call-modal__form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.call-modal__form legend {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.call-modal__calendar-block {
  margin-bottom: 20px;
}

.call-calendar {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.call-calendar__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.call-calendar__month {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.call-calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.call-calendar__nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.call-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.call-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.call-calendar__day {
  aspect-ratio: 1;
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.call-calendar__day:hover:not(:disabled) {
  border-color: rgba(255, 214, 0, 0.45);
}

.call-calendar__day.is-selected {
  background: var(--mp-yellow, #ffd600);
  color: var(--mp-ink, #070b22);
  font-weight: 700;
}

.call-calendar__day--empty {
  background: transparent;
  border: 0;
  pointer-events: none;
}

.call-calendar__day--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.call-calendar__hint {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.call-calendar__slots {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.call-calendar__slots-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.call-calendar__slots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.call-calendar__slot {
  padding: 8px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.82rem;
  cursor: pointer;
}

.call-calendar__slot:hover {
  border-color: rgba(255, 214, 0, 0.45);
}

.call-calendar__slot.is-selected {
  background: var(--mp-yellow, #ffd600);
  color: var(--mp-ink, #070b22);
  font-weight: 700;
}

.call-calendar__provider:empty {
  display: none;
}

.call-modal__fields {
  display: grid;
  gap: 12px;
}

.call-modal__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.call-modal__field input,
.call-modal__field select,
.call-modal__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}

.call-modal__field input:focus,
.call-modal__field select:focus,
.call-modal__field textarea:focus {
  outline: 2px solid rgba(255, 214, 0, 0.55);
  outline-offset: 1px;
}

.call-modal__feedback {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.call-modal__feedback.is-error {
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(255, 120, 120, 0.35);
}

.call-modal__feedback.is-success {
  background: rgba(60, 180, 100, 0.15);
  border: 1px solid rgba(120, 220, 150, 0.35);
}

.call-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.call-modal__submit {
  flex: 1 1 auto;
}

@media (min-width: 900px) {
  .call-modal {
    align-items: center;
    padding: 24px;
  }

  .call-modal__panel {
    max-width: 980px;
    border-radius: 20px;
    padding: 28px 30px 32px;
  }

  .call-modal__layout {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: start;
  }

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