/* Jaguar Security — styles.css */
:root{
  --bg: #050505;
  --panel: #151518;
  --text: #ececf1;
  --muted: #9ca3af;
  --soft: rgba(255,255,255,.08);
  --gold: #D4A557;
  --gold-gradient: linear-gradient(135deg, #D4A557 0%, #F3D08B 50%, #B8903E 100%);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --card:#121214;
  --border: rgba(212,165,87,.25);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --font: 'Inter', system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(212, 165, 87, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(60, 60, 70, 0.4), transparent 25%);
  color: var(--text);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ color: var(--muted); line-height: 1.7; margin: 0 0 14px; }
h1,h2,h3{ margin:0; letter-spacing: .2px; }
h1{
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff 20%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2{ font-size: clamp(22px, 3.2vw, 34px); }
h3{ font-size: 18px; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:10px;
  padding:10px 14px; border-radius:12px;
  background: var(--gold); color:#111; font-weight:700;
}
.skip-link:focus{ left:10px; z-index:999; }

.call-mobile { display: none !important; }
@media (max-width: 980px) {
  .call-mobile {
    display: inline-flex !important;
  }
}

.btn{
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .3px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--gold-gradient);
  border: none;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 165, 87, 0.25);
}
.btn-primary:hover{
  box-shadow: 0 8px 25px rgba(212, 165, 87, 0.4);
  transform: translateY(-2px);
}
.btn-outline{
  background: transparent;
  border-color: rgba(212,165,87,.45);
  color: var(--text);
}
.btn-outline:hover{
  background: rgba(212,165,87,.12);
  border-color: rgba(232,185,104,.75);
}
.btn-soft{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn-soft:hover{ background: rgba(255,255,255,.10); }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,165,87,.35);
  background: rgba(212,165,87,.10);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10,10,11,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}

.brand__logo{
  width: 54px;
  height: 54px;
  padding: 2px;
  border-radius: 14px;
  overflow: visible;
  border: 1px solid rgba(212,165,87,.28);
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.1;
}

.brand__name{
  font-weight: 900;
  letter-spacing: .4px;
  font-size: 16px;
}

.brand__tag{
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 8px;
}

.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  border: 1px solid transparent;
}

.nav a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

.nav a[aria-current="page"]{
  color: rgba(255,255,255,.95);
  background: rgba(212,165,87,.10);
  border-color: rgba(212,165,87,.28);
}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 20px;
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.burger:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(212,165,87,.35);
}

.burger[aria-expanded="true"]{
  background: rgba(212,165,87,.18);
}

.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,11,.85);
}

.mobile__panel{
  padding: 12px 0 16px;
  display:grid;
  gap: 10px;
}

.mobile__panel[hidden]{
  display:none !important;
}

.mobile__panel a{
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #f3f4f6;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease;
}

.mobile__panel a:hover{
  border-color: rgba(212,165,87,.40);
  background: rgba(212,165,87,.12);
}

.hero{
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: -2;
  mix-blend-mode: luminosity;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 50%, var(--bg) 100%);
  z-index: -1;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
}

.hero__card{
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 32px 28px;
  line-height: 1.7;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero__side{
  display:grid;
  gap: 16px;
}

.hero h1 {
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.stat{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 22px 18px;
}

.stat strong{
  display:block;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.stat span{ color: var(--muted); }

.section{
  padding: 50px 0;
}

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 16px;
  margin-bottom: 32px;
}

.section__head h2 {
  margin-bottom: 10px;
}

.section__head p{ max-width: 70ch; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.panel, .kpi {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 24px 20px;
  line-height: 1.65;
}

.card:hover .card__icon {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(212,165,87,0.25);
  border-color: rgba(212,165,87,0.55);
}

.panel:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 165, 87, 0.3);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 165, 87, 0.1);
}

.card__icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,165,87,0.15) 0%, rgba(243,208,139,0.08) 100%);
  border: 2px solid rgba(212,165,87,0.35);
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(212,165,87,0.15);
  transition: all 0.3s ease;
}

.card__icon svg {
  width: 32px;
  height: 32px;
  fill: #D4A557;
  filter: drop-shadow(0 2px 8px rgba(212,165,87,0.4));
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.panel h3{ margin-bottom: 12px; }

.card p {
  margin: 0;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 32ch;
}

.panel p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.link-card{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.link-card .btn{
  align-self:flex-start;
  margin-top: 6px;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kpi strong{ font-size: 28px; display:block; color: var(--text); }
.kpi span{ color: var(--muted); }

.faq{
  display:grid;
  gap: 10px;
}

.faq details{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 16px;
}

.faq summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-weight: 900;
}

.faq summary::-webkit-details-marker{ display:none; }

.faq .chev{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(212,165,87,.10);
  border: 1px solid rgba(212,165,87,.25);
}

.faq details[open] .chev{ background: rgba(212,165,87,.18); }

.form{
  display:grid;
  gap: 18px;
}

.field{
  display:grid;
  gap: 9px;
}

label{ font-weight: 800; color: var(--text); margin-bottom: 4px; }

input, textarea, select{
  width:100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}

input:focus, textarea:focus, select:focus{
  border-color: rgba(232,185,104,.65);
  box-shadow: 0 0 0 3px rgba(212,165,87,.18);
}

textarea{ min-height: 120px; resize: vertical; }
.help{ font-size: 13px; color: var(--muted); }
.error{ font-size: 13px; color: #ffb4b4; display:none; }
.field.invalid .error{ display:block; }

.map{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  min-height: 320px;
}

.map iframe{ width:100%; height: 360px; border:0; filter: contrast(1.05) saturate(.9); }

.footer{
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8,8,9,.65);
}

.footer__inner{
  padding: 36px 0;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.footer small{ color: var(--muted); }
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.toast{
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 24px));
  background: rgba(20,20,22,.92);
  border: 1px solid rgba(212,165,87,.35);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 12px 14px;
  display:none;
  z-index: 1000;
}

.toast.show{ display:block; }
.toast strong{ color: var(--text); }
.toast span{ color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .kpis{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .nav, .header__cta{ display:none; }
  .burger{ display:flex; align-items:center; justify-content:center; }
  .mobile{ display:block; }
}
