@font-face {
  font-family: "Gotham";
  src: url("Gotham_Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("Gotham_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1366D6;
  --blue-dark: #0E4FAE;
  --blue-deep: #0B3D8C;
  --navy: #0C2138;
  --navy-2: #0A1B2E;
  --ink: #102A43;
  --ink-soft: #3C5063;
  --gray: #5B6B7B;
  --gold: #F7A823;
  --line: #E6EBF1;
  --bg: #EEF2F6;
  --card: #FFFFFF;
  --app-w: 480px;

  font-size: 11px;
}

@media screen and (min-width:480px) {
  :root {
    --app-w: 700px;
  }
}



* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gotham", "Montserrat", sans-serif;
  /*'Archivo',system-ui,-apple-system,sans-serif;*/
  /* background:var(--bg); */
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.app {
  width: 100%;
  max-width: var(--app-w);
  min-height: 100vh;
  /* background:linear-gradient(180deg,#FBFCFE 0%,#EDF2F8 60%,#E7EEF6 100%); */
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(16, 42, 67, .12);
  padding-bottom: 60px;
}

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

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

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(251, 252, 254, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 42, 67, .06);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo .lockup {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -.5px;
}

.logo .cf {
  color: var(--blue);
}

.logo .sv {
  color: var(--ink);
}

.logo .wrench {
  width: 17px;
  height: 17px;
  color: var(--blue);
  transform: rotate(8deg);
  margin-left: -1px;
}

.logo .tag {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    color: var(--ink-soft);
    margin-top: 4px;
}


/* nav menu */
.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 42, 67, .16);
  padding: 78px 20px 22px;
  transform: translateY(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.menu.open {
  transform: translateY(0);
}

.menu a {
  display: block;
  padding: 15px 6px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.menu a:last-child {
  border-bottom: none;
}

.menu .menu-call {
  margin-top: 16px;
  border: none;
  border-radius: 50px;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  padding: 15px;
  font-size: 17px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  /* padding:26px 20px 8px; */
  padding: 0 10px;
}

.hero-img-wrap {
  position: absolute;
  top: 26px;
  right: -66px;
  width: 64%;
  max-width: 268px;
  z-index: 1;
  pointer-events: auto;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(16, 42, 67, .16));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 62%;
}

h1.hero-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.02;
  font-size: 1.5rem;
  text-transform: uppercase;
}

h1.hero-title .l1 {
  color: var(--ink);
}

h1.hero-title .l2 {
  color: var(--blue);
  display: block;
  margin-top: 4px;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 22px 0 0;
}

.phone-ic {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.phone-ic svg {
  width: 10px;
  height: 10px;
}

.phone-num {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.5px;
  color: var(--ink);
  white-space: nowrap;
}

.btn-call {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(175deg, #FF9A2E 0%, #E8720A 45%, #C45C00 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: .3px;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 #8A3D00, 0 10px 24px rgba(180, 80, 0, .45);
  text-transform: uppercase;
  position: relative;
  top: 0;
  transition: top .1s, box-shadow .1s;
}

.btn-call:active {
  top: 4px;
  box-shadow: 0 2px 0 #8A3D00, 0 4px 12px rgba(180, 80, 0, .35);
}

.btn-call svg {
  width: 21px;
  height: 21px;
}

.hero-clear {
  clear: both;
  height: 8px;
}

/* ============ GOOGLE BADGE ============ */
.gbadge {
  /* margin:25px 20px 0; */
  background: #fff;
  border-radius: 16px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(16, 42, 67, .09);
}

.gbadge .g {
  width: 24px;
  height: 24px;
  flex: none;
}

.gstars {
  display: flex;
  gap: 2px;
}

.gstars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.gbadge .l1 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}

.gbadge .l2 {
  font-size: .9rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px;
}

/* ============ ACCORDIONS ============ */
.acc-wrap {
  /* margin:18px 20px 0; */
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 42, 67, .08);
}

.acc {
  border-bottom: 1px solid var(--line);
}

.acc:last-child {
  border-bottom: none;
}

.acc-head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 20px;
}

.acc-ic {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A74E6, #0F57C4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 16px rgba(19, 102, 214, .30);
}

.acc-ic svg {
  width: 17px;
  height: 17px;
}

.acc-txt {
  flex: 1;
  min-width: 0;
}

.acc-txt .t {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: var(--ink);
}

.acc-txt .s {
  font-size: .9rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.35;
}

.acc-plus {
  width: 30px;
  flex: none;
  color: var(--blue);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.acc.open .acc-plus {
  transform: rotate(45deg);
}

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.acc.open .acc-body {
  grid-template-rows: 1fr;
}

.acc-body>div {
  overflow: hidden;
}

.acc-inner {
  padding: 2px 20px 22px 92px;
}

/* checklist for "cosa ripariamo" */
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.check-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.check-list svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--blue);
}

ul {
  margin: 0;
  padding: 0;
}

/* chips for zone + marchi */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
    background: #EEF4FD;
    color: var(--blue-deep);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 6px;
    border-radius: 8px;
    border: 1px solid #DBE7FA;
}

.acc-note {
  font-size: .9rem;
  color: var(--gray);
  font-weight: 500;
  margin: 0 0 14px;
  font-style: italic;
}

.acc-inner.wide {
  padding-left: 20px;
  padding-right: 18px;
}

.zone-group {
  margin-bottom: 17px;
}

.zone-group:last-child {
  margin-bottom: 0;
}

.zone-cat {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.2px;
  color: var(--ink);
  margin-bottom: 11px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.zone-cat span {
  font-weight: 600;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0;
  white-space: nowrap;
}

.chips-brands span {
  background: #F4F6F9;
  color: var(--ink);
  border-color: #E2E8F0;
}

/* ============ TESTIMONIALS ============ */

.reviews h2 {
  text-align: center;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 10px 0 5px;
}

.rev-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 6px;
  scrollbar-width: none;
}

.rev-track::-webkit-scrollbar {
  display: none;
}

.rev-card {
  scroll-snap-align: center;
  flex: 0 0 82%;
  background: #fff;
  border-radius: 16px;
  padding: 5px 20px 5px;
  box-shadow: 0 10px 26px rgba(16, 42, 67, .09);
  display: flex;
  flex-direction: column;
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.rev-top .g {
  width: 16px;
  height: 16px;
  flex: none;
}

.rev-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
  margin: 5px 0;
}

.rev-author {
  margin-top: 0;
}

.rev-author .n {
  font-weight: 800;
  font-size: .8rem;
  color: var(--ink);
}

.rev-author .c {
  font-weight: 700;
  font-size: .8rem;
  color: var(--blue);
  margin-top: 1px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #C5D0DC;
  padding: 0;
  cursor: pointer;
  transition: .25s;
}

.dots button.active {
  background: var(--blue);
  width: 24px;
  border-radius: 5px;
}

.rev-more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 0 20px;
}

.rev-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid #dbe3ec;
  box-shadow: 0 6px 18px rgba(16, 42, 67, .08);
  transition: .2s;
}

.rev-more-btn:active {
  transform: scale(.97);
}

.rev-more-btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ============ FOOTER ============ */
footer {
  margin-top: 14px;
  background: var(--navy);
  color: #fff;
  padding: 20px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px 12px;
  align-items: start;
}

.foot-col h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  margin: 0 0 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

.foot-col h3 svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: none;
}

.foot-col p,
.foot-col a {
  font-size: .9rem;
  color: #AEBED0;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.foot-col a {
  display: block;
  padding: 3px 0;
}

.foot-strong {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13.5px;
  white-space: nowrap;
}

.foot-wa {
  margin-top: 13px;
}

.foot-wa .lab {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.foot-wa .lab svg {
  width: 14px;
  height: 14px;
  color: #25D366;
  flex: none;
}

.foot-orari {
  margin-top: 6px;
}

.foot-bottom {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: 0.7rem;
    color: #7E91A6;
    text-align: center;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 80%; */
    width: max-content;
    max-width: var(--app-w);
    z-index: 70;
    /* padding: 12px 16px; */
    /* background: linear-gradient(180deg,rgba(231,238,246,0),#E7EEF6 38%); */
    pointer-events: none;
}

.sticky-cta a {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(180deg, #fa8737 0%, #eb7027 5%, #ab400f 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 42px;
    /* box-shadow: 0 6px 0 #8A3D00, 0 12px 28px rgba(180, 80, 0, .50); */
    position: relative;
    top: 0;
    transition: top .1s, box-shadow .1s;
    box-sizing: border-box;
}

.sticky-cta a:active {
  top: 4px;
  box-shadow: 0 2px 0 #8A3D00, 0 6px 14px rgba(180, 80, 0, .35);
}

.sticky-cta .ic {
    /* width: 42px; */
    /* height: 42px; */
    flex: none;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, .22); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-cta .ic svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.sticky-cta .txt {
  text-align: left;
  line-height: 1.1;
}

.sticky-cta .txt .a {
  display: block;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.sticky-cta .txt .b {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
}

@media (max-width:360px) {
  /* h1.hero-title{font-size:29px;}
  .phone-num{font-size:22px;}
  .hero-content{max-width:64%;} */
}