/* Zantril — custom styles (no blue palette) */
:root{
  --bg: #0f1b12;
  --surface: #142318;
  --surface-2: #182b1e;
  --soft: #0f1b12;
  --text: #eaf3ea;
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);

  --green: #2e7d32;
  --green-2: #3fa34d;
  --orange: #ff8a00;
  --orange-2: #ffb457;

  --card: #ffffff;
  --card-text: #1b1f1c;
  --ring: rgba(255,138,0,.35);
}

html, body{
  height: 100%;
}

body{
  font-size: 16px; /* min 16px as requested */
  background: radial-gradient(1200px 800px at 10% 10%, rgba(63,163,77,.18), transparent 60%),
              radial-gradient(1000px 700px at 90% 0%, rgba(255,138,0,.16), transparent 55%),
              linear-gradient(180deg, #0b140e, #0f1b12 55%, #0b140e);
  color: var(--text);
}

/* Bootstrap text helpers tuned for dark theme */
body .text-muted,
body .text-secondary,
body .text-body-secondary{
  color: rgba(255,255,255,.72) !important;
}

/* Keep muted text readable on light panels */
.hero-card .text-muted,
.hero-card .form-text,
.quote-card .text-muted,
.parallax-card .text-muted,
.modal-lite__panel .text-muted{
  color: rgba(0,0,0,.62) !important;
}

a{
  color: var(--orange-2);
}
a:hover{
  color: var(--orange);
}

.brand-mark{
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  background: rgba(255,255,255,.08);
}

.brand-name{
  letter-spacing: .3px;
  color: var(--text);
  font-weight: 700;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15, 27, 18, .78);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Responsive menu (no Bootstrap JS) */
.nav-toggle{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover{
  background: rgba(255,255,255,.10);
}

.nav-menu{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-cta{ white-space: nowrap; }

@media (max-width: 992px){
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    display: none;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 27, 18, .92);
    border: 1px solid rgba(255,255,255,.10);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-menu.is-open{ display: flex; }
  .nav-link-lite{ padding: 6px 2px; }
}

.nav-link-lite{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 600;
}
.nav-link-lite:hover{
  color: #ffffff;
}

.btn-cta{
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border: 0;
  color: #1b1b1b;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(255,138,0,.22);
}
.btn-cta:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.btn-outline-lite{
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  background: transparent;
  font-weight: 700;
}
.btn-outline-lite:hover{
  border-color: rgba(255,255,255,.36);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.section-pad{
  padding: 72px 0;
}
.section-soft{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-head{
  margin-bottom: 28px;
  max-width: 820px;
}

.letterspace{
  letter-spacing: .14em;
}

/* Hero */
.hero-parallax{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 86px 0;
  background-image: url("../images/hero-italy-security.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax */
}
.hero-parallax__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(63,163,77,.35), transparent 60%),
    radial-gradient(900px 700px at 80% 30%, rgba(255,138,0,.32), transparent 62%),
    linear-gradient(180deg, rgba(11,20,14,.68), rgba(11,20,14,.82));
}
.text-hero{
  color: rgba(255,255,255,.85);
}

.badge-kicker{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
}

.text-highlight{
  color: var(--orange-2);
  text-shadow: 0 12px 34px rgba(255,138,0,.18);
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.hero-badge i{
  color: var(--green-2);
}

.hero-card{
  background: rgba(255,255,255,.94);
  color: var(--card-text);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
.hero-card__top{
  padding: 18px 18px 0 18px;
}
.hero-card form{
  padding: 18px;
}

.form-control, .form-select, textarea{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: none !important;
}
.form-control:focus, textarea:focus{
  border-color: rgba(255,138,0,.7);
  box-shadow: 0 0 0 4px var(--ring) !important;
}
.form-label{
  font-weight: 700;
}

/* Trust strip */
.trust-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 992px){
  .trust-strip{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .trust-strip{ grid-template-columns: 1fr; }
}
.trust-item{
  display:flex;
  align-items:center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.trust-item i{
  color: var(--orange-2);
}

/* Cards */
.card-lift{
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.card-lift .card-body{
  padding: 22px;
}
.icon-chip{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(63,163,77,.14), rgba(255,138,0,.12));
  border: 1px solid rgba(0,0,0,.06);
  color: #1f2a21;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Parallax band */
.parallax-band{
  position: relative;
  padding: 84px 0;
  background-image: url("../images/parallax-audit-room.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-band__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(255,138,0,.35), transparent 60%),
    radial-gradient(900px 700px at 80% 30%, rgba(63,163,77,.30), transparent 62%),
    linear-gradient(180deg, rgba(12,18,13,.72), rgba(12,18,13,.88));
}
.text-white-75{ color: rgba(255,255,255,.78); }

.parallax-card{
  background: rgba(255,255,255,.92);
  color: #1b1f1c;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}
.parallax-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,138,0,.20), rgba(63,163,77,.18));
  color: #1b1f1c;
}

/* Steps */
.step-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
}
.step-card__num{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255,138,0,.14);
  border: 1px solid rgba(255,138,0,.24);
  color: rgba(255,255,255,.95);
  margin-bottom: 12px;
}

/* Sectors */
.sector-list{
  display: grid;
  gap: 14px;
}
.sector-item{
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.sector-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(63,163,77,.16);
  border: 1px solid rgba(63,163,77,.22);
  color: rgba(255,255,255,.92);
}

.image-stack{
  position: relative;
}
.image-stack__float{
  position: absolute;
  right: 8%;
  bottom: -12%;
  width: 56%;
  border: 6px solid rgba(15,27,18,.88);
}
@media (max-width: 992px){
  .image-stack__float{
    position: static;
    width: 100%;
    border: 0;
    margin-top: 16px;
  }
}

/* Stats */
.stat-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
}
.stat-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--orange-2);
  margin-bottom: 10px;
}
.stat-card__value{
  font-size: 28px;
  font-weight: 900;
}

/* Quotes */
.quote-card{
  background: rgba(255,255,255,.92);
  color: #1b1f1c;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.quote-card__stars{
  color: #f1c232;
  margin-bottom: 10px;
}

/* FAQ */
.faq{
  display: grid;
  gap: 12px;
}
.faq-item{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px 16px;
}
.faq-item summary{
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-body{
  margin-top: 10px;
  line-height: 1.6;
}

/* CTA strip */
.cta-strip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
}
@media (max-width: 768px){
  .cta-strip{ flex-direction: column; align-items: flex-start; }
}

/* Page hero */
.page-hero{
  padding: 64px 0;
  background: radial-gradient(900px 600px at 15% 20%, rgba(255,138,0,.18), transparent 60%),
              radial-gradient(900px 700px at 80% 30%, rgba(63,163,77,.16), transparent 62%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero--compact{
  padding: 52px 0;
}

/* Prose */
.content-prose{
  max-width: 940px;
}
.content-prose h2{
  margin-top: 22px;
  margin-bottom: 10px;
}
.content-prose p, .content-prose li{
  color: rgba(255,255,255,.86);
  line-height: 1.65;
}
.content-prose ul{
  padding-left: 1.1rem;
}

/* Footer */
.site-footer{
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11,20,14,.55);
}
.link-plain{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.link-plain:hover{
  color: #fff;
  text-decoration: underline;
}
.text-accent{
  color: var(--orange-2);
}

/* Modal lite */
.modal-lite{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
}
.modal-lite.is-open{
  display: flex;
}
.modal-lite__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}
.modal-lite__panel{
  position: relative;
  width: min(520px, 100%);
  background: rgba(255,255,255,.96);
  color: #1b1f1c;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
}
.modal-lite__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
}
.modal-lite__icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(63,163,77,.18), rgba(255,138,0,.18));
  font-size: 28px;
  color: #1b1f1c;
}

/* Cookie banner (Home only) */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 0;
  background: rgba(15,27,18,.92);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.cookie-banner__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
@media (max-width: 768px){
  .cookie-banner__inner{ flex-direction: column; align-items: flex-start; }
}
.cookie-banner__text{
  color: rgba(255,255,255,.86);
  font-size: 0.95rem;
}
.cookie-banner__text a{
  color: var(--orange-2);
}
.cookie-banner__actions{
  display: flex;
  gap: 10px;
}
