/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ─── Custom Properties ─── */
:root {
  --navy:        #1e3a5f;  /* H214 S52% L24% — scuro profondo, per testi e header */
  --blue:        #446a9b;  /* H214 S38% L44% — BLU PRINCIPALE */
  --blue-mid:    #5f83aa;  /* H214 S30% L52% — variante intermedia, hover e accenti */
  --blue-light:  #7aafd1;  /* H204 S42% L65% — chiaro, icone e highlights */
  --sky:         #ccdfe9;  /* H204 S28% L85% — sfondo hover su card */
  --sky-pale:    #f0f5f9;  /* H208 S25% L96% — sfondo pagina e aree neutre */
  --white:       #ffffff;
  --slate:       #546d86;  /* H214 S23% L43% — testi secondari e label */
  --slate-light: #8da5bc;  /* H210 S22% L64% — testi muti, footer */
  --accent:      #f0a500;  /* H41  S100% L47% — invariato, contrasto caldo */
  --border:      #bdd0e3;  /* H210 S28% L81% — bordi, divisori */
  --text:        #1e3a5f;  /* = navy */
  --text-muted:  #5a7899;  /* H214 S25% L48% — corpo testo secondario */
}
/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--sky-pale);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px 30px;
}

/* ─── Background gradient ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(26, 82, 150, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(59, 143, 232, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #e8f2ff 0%, #f0f6ff 50%, #e3effc 100%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Road stripe decoration ─── */
/* body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0px, var(--blue) 40px,
    transparent 40px, transparent 70px
  );
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
} */

/* ─── Main Card ─── */
/* .landing-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 40px 52px 36px;
  max-width: 700px;
  width: 94%;
  box-shadow:
    0 2px 0 var(--blue-light),
    0 12px 48px rgba(13, 43, 78, 0.12),
    0 2px 8px rgba(13, 43, 78, 0.06);
  text-align: center;
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
} */

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Top stripe accent ─── */
/* .landing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue-mid), var(--blue-light));
  border-radius: 16px 16px 0 0;
} */

/* ─── Logo area ─── */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
  animation: slideUp 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-img {
  width: 300px;
  height: 61px;
  object-fit: contain;
}

/* ─── Company Name ─── */


.company-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: slideUp 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-top: 36px;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Description ─── */
.company-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 550px;
  margin: 0 auto 36px;
  animation: slideUp 0.7s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─── Divider ─── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 16px;
  animation: slideUp 0.7s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-divider span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--slate-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Info Grid ─── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px 15px;
  margin-bottom: 20px;
  animation: slideUp 0.7s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  /* border-radius: 10px;
  border: 1px solid var(--border);
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default; */

   border-left: 4px solid var(--blue-light);
  transition: border-color 0.25s;
}

.info-item:hover {
  /* background: var(--sky);
  border-color: var(--blue-light);
  transform: translateY(-1px); */
  border-left-color: var(--gold);
}

.info-icon {
  flex-shrink: 0;
  /* width: 30px;
  height: 30px; */
  /* background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 8px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.info-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-mid);
}

.info-value {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
}

.info-value a {
  color: var(--text);
  text-decoration: underline;
  transition: color 0.2s;
}
.info-value a:hover { color: var(--blue-light); text-decoration: none;}

/* ─── Social Buttons ─── */
.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  animation: slideUp 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-btn:hover { transform: translateY(-2px); }

.social-btn--linkedin, .social-btn--facebook {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,82,150,0.3);
}
.social-btn--linkedin:hover, .social-btn--facebook:hover  {
  box-shadow: 0 6px 20px rgba(26,82,150,0.4);
  color: var(--white);
}

/* .social-btn--facebook {
  background: var(--white);
  color: var(--blue-mid);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(13,43,78,0.06);
}
.social-btn--facebook:hover {
  background: var(--sky);
  border-color: var(--blue-light);
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(26,82,150,0.12);
} */

.social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Footer note ─── */
.footer-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--slate-light);
  animation: slideUp 0.7s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.footer-note a {
  color: var(--blue);
  transition: color 0.35s;
  text-decoration: none;
}
.footer-note a:hover {
  color: var(--blue-light);
  transition: color 0.35s;
}

/* ─── Mobile fallback ─── */
@media (max-width: 576px) {
  html, body { overflow: auto; }
  /* .landing-card { padding: 32px 18px 28px; } */
  .company-name { font-size: 1.6rem; }
  .info-grid { grid-template-columns: 1fr; }
}



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











.loop-wrapper {
  margin: 0 auto;
  position: relative;
  display: block;
  /* width: 600px; */
  height: 160px;
  overflow: hidden;
  border-bottom: 3px solid var(--blue);
  color: var(--blue);
}
.mountain {
  position: absolute;
  right: -900px;
  bottom: -20px;
  width: 2px;
  height: 2px;
  box-shadow: 
    0 0 0 50px var(--blue-light),
    60px 50px 0 70px var(--blue-light),
    90px 90px 0 50px var(--blue-light),
    250px 250px 0 50px var(--blue-light),
    290px 320px 0 50px var(--blue-light),
    320px 400px 0 50px var(--blue-light)
    ;
  transform: rotate(130deg);
  animation: mtn 20s linear infinite;
}
.hill {
  position: absolute;
  right: -900px;
  bottom: -50px;
  width: 400px;
  border-radius: 50%;
  height: 20px;
  box-shadow: 
    0 0 0 50px var(--blue-light),
    -20px 0 0 20px var(--blue-light),
    -90px 0 0 50px var(--blue-light),
    250px 0 0 50px var(--blue-light),
    290px 0 0 50px var(--blue-light),
    620px 0 0 50px var(--blue-light);
  animation: hill 12s 3s linear infinite;
}
.tree, .tree:nth-child(2), .tree:nth-child(3) {
  position: absolute;
  height: 100px; 
  width: 35px;
  bottom: 0;
  background: url(/static/img/landing/tree.svg) no-repeat;
}
.rock {
  margin-top: -17%;
  height: 2%; 
  width: 2%;
  bottom: -2px;
  border-radius: 20px;
  position: absolute;
  background: var(--slate);
}
.truck, .wheels {
  transition: all ease;
  width: 85px;
  margin-right: -60px;
  bottom: 0px;
  right: 50%;
  position: absolute;
  background: var(--navy);
}
.truck {
  background: url(/static/img/landing/truck.svg) no-repeat;
  background-size: contain;
  height: 60px;
}
.truck:before {
  content: " ";
  position: absolute;
  width: 25px;
  box-shadow:
    -30px 28px 0 1.5px var(--navy),
     -35px 18px 0 1.5px var(--navy);
}
.wheels {
  background: url(/static/img/landing/wheels.svg) no-repeat;
  height: 15px;
  margin-bottom: 0;
}

.tree  { animation: tree 3s 0.000s linear infinite; }
.tree:nth-child(2)  { animation: tree2 2s 0.150s linear infinite; }
.tree:nth-child(3)  { animation: tree3 8s 0.050s linear infinite; }
.rock  { animation: rock 4s   -0.530s linear infinite; }
.truck  { animation: truck 4s   0.080s ease infinite; }
.wheels  { animation: truck 4s   0.001s ease infinite; }
.truck:before { animation: wind 1.5s   0.000s ease infinite; }


@keyframes tree {
  0%   { transform: translate(1350px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes tree2 {
  0%   { transform: translate(650px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes tree3 {
  0%   { transform: translate(2750px); }
  50% {}
  100% { transform: translate(-50px); }
}

@keyframes rock {
  0%   { right: -200px; }
  100% { right: 2000px; }
}
@keyframes truck {
  0%   { }
  6%   { transform: translateY(0px); }
  7%   { transform: translateY(-6px); }
  9%   { transform: translateY(0px); }
  10%   { transform: translateY(-1px); }
  11%   { transform: translateY(0px); }
  100%   { }
}
@keyframes wind {
  0%   {  }
  50%   { transform: translateY(3px) }
  100%   { }
}
@keyframes mtn {
  100% {
    transform: translateX(-2000px) rotate(130deg);
  }
}
@keyframes hill {
  100% {
    transform: translateX(-4000px);
  }
}




.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

