:root{
  --bg: #f5f7fb;
  --text: #0a1d37;
  --muted:#6c757d;

  --navy1:#0a1d37;
  --navy2:#123a70;
  --navy3:#08223f;

  --gold:#f6c25b;
  --blue:#1e6fff;

  --card:#ffffff;
  --border:#e7ebf3;
  --shadow: 0 18px 40px rgba(10,29,55,.10);
  --radius: 26px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: #1b1f2a;
}

.hero{
  height: 420px;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
}
.hero-overlay{
  position:absolute; inset:0;
  background: rgba(10,29,55,.86);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 18px;
}
.hero-inner{
  text-align:center;
  color:#fff;
  max-width: 980px;
}
.hero-inner h1{
  margin:0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .2px;
}
.hero-inner p{
  margin:0;
  opacity:.9;
  line-height:1.5;
  font-size: 16px;
}
.hero-btn{
  display:inline-block;
  margin-top: 22px;
  background: var(--gold);
  color:#071a32;
  font-weight: 800;
  text-decoration:none;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.20);
}

.page-head{
  text-align:center;
  padding: 54px 18px 18px;
}
.page-head h2{
  margin:0;
  font-size: 44px;
  font-weight: 900;
  color: #20242f;
}
.page-head p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.wrap{
  max-width: 1200px;
  margin: 18px auto 70px;
  padding: 0 18px;
}

/* GRID TOP 3 */
.grid-top{
  display:grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 32px;
  align-items: stretch;
}

/* GRID BOTTOM 2 */
.grid-bottom{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* CARD */
.card{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-light{
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px;
}
.card-dark{
  background: linear-gradient(180deg, var(--navy3) 0%, var(--navy1) 45%, var(--navy2) 100%);
  color:#fff;
  padding: 26px;
}

/* LEFT PACKAGE */
.package .pill{
  background: var(--gold);
  color:#071a32;
  font-weight: 800;
  text-align:center;
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  max-width: 360px;
  margin: 6px auto 16px;
}
.package h3{
  margin: 8px 0 14px;
  font-size: 34px;
  font-weight: 900;
  opacity: .22;
}
.package-media{
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  height: 210px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}
.package-media img{
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}
.package-media-fallback{
  width: 90%;
  height: 78%;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
}
.package-incl{
  margin-top: 12px;
}
.incl-title{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.incl-icon{
  width: 18px; height: 18px;
  border-radius: 6px;
  display:inline-flex;
  align-items:center; justify-content:center;
  background: rgba(255,255,255,.16);
  font-size: 12px;
}
.incl-dots{ opacity:.9; }
.mini-ok{
  border:0;
  background: rgba(246,194,91,.95);
  color:#071a32;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 900;
  display:flex;
  gap: 8px;
  align-items:center;
}
.mini-ok-check{
  background:#071a32;
  color: var(--gold);
  width: 18px; height: 18px;
  border-radius: 6px;
  display:inline-flex;
  align-items:center; justify-content:center;
  font-size: 12px;
}
.checklist{
  margin: 10px 0 20px;
  padding-left: 18px;
}
.checklist li{
  margin: 8px 0;
  font-size: 16px;
  font-weight: 600;
  opacity: .95;
}
.btn-outline{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
}

/* OPTIONS MID */
.options h3{
  margin:0 0 24px;
  font-size: 38px;
  font-weight: 900;
  color: #222733;
}
.opt-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
   padding: 16px 14px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  margin-bottom: 12px;
  background:#fff;
}
.opt-name{
  font-weight: 700;
  color:#2a303a;
}
.opt-right{
  display:flex;
  align-items:center;
  gap: 10px;
}
.opt-price{
  font-weight: 800;
  color:#3a4251;
  font-size: 14px;
  min-width: 78px;
  text-align:right;
}
.qty{
  display:flex;
  align-items:center;
  gap: 8px;
}
.qty-input{
  width: 54px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #dbe2ef;
  text-align:center;
  font-weight: 800;
  outline: none;
}
.qty-btn{
  width: 36px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #dbe2ef;
  background:#f6f8fd;
  font-weight: 900;
  cursor:pointer;
}

.opt-video{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid #edf1f7;
  overflow:hidden;
}
.opt-video-head{
  padding: 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
}
.opt-video-left{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color:#2a303a;
}
.radio-dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #c9d3e7;
}
.radio-dot.is-on{
  border-color:#2d79ff;
  box-shadow: inset 0 0 0 4px #2d79ff;
}
.info-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:#e8f0ff;
  color:#2d79ff;
  font-weight: 900;
  font-size: 12px;
}
.opt-video-count{
  background:#eef2ff;
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 900;
  font-size: 12px;
  color:#2d79ff;
}
.opt-video-price{
  font-weight: 900;
  color:#3a4251;
}

.opt-video-body{
  padding: 12px 12px 14px;
  background:#f6f8fd;
}
.opt-video-desc{
  margin:0 0 8px;
  color:#576074;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}
.opt-video-list{
  margin: 0 0 12px;
  padding-left: 16px;
  color:#3d4658;
  font-weight: 700;
  font-size: 13px;
}
.opt-video-foot{
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.monitoring-row{
  display:flex;
  justify-content:space-between;
  font-weight: 900;
  color:#2a303a;
  margin-bottom: 10px;
}
.toggle-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#2a303a;
  font-weight: 800;
  font-size: 13px;
}
.segmented{
  display:flex;
  background:#eaf0ff;
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
}
.segmented.small{ padding: 3px; }
.seg{
  border:0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 900;
  color:#1f2b3f;
  cursor:pointer;
}
.seg.is-active{
  background:#2bb77a;
  color:#fff;
}
.segmented.small .seg{
  padding: 6px 12px;
  font-size: 13px;
}

/* SUMMARY RIGHT */
.summary h3{
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 900;
  opacity: .9;
}
.total-pill{
  background: rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px 16px;
  text-align:center;
  margin-bottom: 18px;
}
.total-pill-label{
  opacity:.9;
  font-weight: 800;
}
.total-pill-value{
  font-size: 44px;
  font-weight: 1000;
  line-height: 1;
}
.total-pill-value span{
  font-size: 18px;
  font-weight: 900;
  opacity:.9;
}
.sum-rows{
  margin-top: 10px;
}
.sum-row{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 6px 0;
  font-weight: 800;
  opacity: .95;
}
.sum-total-box{
  margin-top: 12px;
  background: rgba(30,111,255,.18);
  border: 1px solid rgba(30,111,255,.35);
  border-radius: 14px;
  padding: 12px 14px;
  display:flex;
  justify-content:space-between;
  font-weight: 1000;
}
.sum-note{
  margin: 14px 0 16px;
  opacity:.85;
  line-height: 1.35;
}
.btn-primary{
  width: 100%;
  padding: 16px 16px;
  border-radius: 16px;
  border:0;
  background: var(--blue);
  color:#fff;
  font-weight: 1000;
  font-size: 18px;
  cursor:pointer;
}

/* SYSTEM (bottom left) */
.system h3{
  margin:0;
  font-size: 26px;
  font-weight: 1000;
  color:#20242f;
}
.system-small{
  margin-top: 8px;
  color:#7a8294;
  font-weight: 700;
}
.system-box{
  margin-top: 16px;
  border: 1px solid #e8edf7;
  border-radius: 16px;
  padding: 14px;
  background:#fff;
}
.system-box.two{
  margin-top: 14px;
}
.system-box-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom: 10px;
}
.system-box-title{
  font-weight: 1000;
  font-size: 18px;
  color:#1f2633;
}
.system-box-price{
  font-weight: 1000;
  color:#1f2633;
}
.system-box-price span{
  font-weight: 800;
  color:#6f778a;
  font-size: 12px;
}
.system-list{
  margin:0;
  padding-left: 0;
  list-style:none;
  color:#4f586c;
  font-weight: 700;
  font-size: 13px;
}
.system-list li{
  display:flex;
  gap: 10px;
  margin: 8px 0;
  line-height: 1.35;
}
.dot-check{
  width: 18px; height: 18px;
  border-radius: 50%;
  background:#2d79ff;
  color:#fff;
  font-weight: 1000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  flex: 0 0 18px;
  margin-top: 1px;
}
.system-row{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e8edf7;
  border-radius: 16px;
  background:#fff;
}
.system-row-left{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color:#1f2633;
}
.system-row-mid{
  color:#6f778a;
  font-weight: 1000;
}
.qty-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px; height: 26px;
  border-radius: 10px;
  background:#eef2ff;
  color:#2d79ff;
  font-weight: 1000;
}
.mul{ margin: 0 6px; }
.system-foot{
  margin-top: 10px;
  color:#7a8294;
  font-weight: 700;
  font-size: 12px;
}

/* FINAL (bottom right) */
.final{
  padding: 0;
  overflow:hidden;
}
.final-media{
  height: 170px;
  background:#e8edf7;
  border-radius: 18px;
  margin: 18px 18px 0;
  overflow:hidden;
  position:relative;
}
.final-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.final-media-fallback{
  width:100%;
  height:100%;
  background: linear-gradient(135deg, #dfe7f5, #eef3ff);
}
.final-title{
  margin: 14px 18px 6px;
  font-weight: 1000;
  color:#1f2633;
  font-size: 18px;
}
.final-price{
  margin: 0 18px 14px;
  font-size: 44px;
  font-weight: 1000;
  color:#1f2633;
  line-height: 1;
}
.final-price span{
  font-size: 18px;
  font-weight: 900;
  color:#6f778a;
}
.final .btn-primary{
  margin: 0 18px;
}
.final-note{
  margin: 14px 18px 20px;
  color:#7a8294;
  font-weight: 700;
  line-height: 1.35;
}

/* RESPONSIVE */
@media (max-width: 1050px){
  .grid-top{ grid-template-columns: 1fr; }
  .grid-bottom{ grid-template-columns: 1fr; }
  .page-head h2{ font-size: 36px; }
  .hero-inner h1{ font-size: 36px; }
}
.package-select {
  margin: 6px auto 16px;
  max-width: 360px;
}

.package-select select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  font-weight: 900;
  font-size: 16px;
  background: #ffffff;
  color: #0a1d37;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  outline: none;
  cursor: pointer;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.incl-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.incl-title span {
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}
.card.options{
  padding-bottom: 48px;
}
.hidden{
  display: none;
}

.camera-select{
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #dbe2ef;
  font-weight: 800;
  background: #fff;
  cursor: pointer;
}
/* Spatiere Sistem video */
.opt-video-body .toggle-row{
  margin-bottom: 16px;
}

.opt-video-body .video-cameras .toggle-row{
  margin-bottom: 18px;
}

.opt-video-body .video-cameras{
  margin-top: 8px;
}
.hidden {
  display: none !important;
}
.contact-form h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: #2a303a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbe2ef;
  font-weight: 600;
  font-family: inherit;
}

.form-group textarea {
  resize: none;
}

.form-group.full {
  grid-column: 1 / -1;
}

.contact-form hr {
  margin: 22px 0;
  border: none;
  border-top: 1px solid #e7ebf3;
}

.contact-form h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.order-summary label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2633;
}

.order-summary input {
  margin-right: 8px;
}

.order-total {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 900;
  color: #1f2633;
}
.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form-full h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  font-weight: 600;
  font-family: inherit;
}

.field.full {
  margin-bottom: 18px;
}

.contact-form-full hr {
  border: none;
  border-top: 1px solid #e7ebf3;
  margin: 24px 0;
}

/* REZUMAT */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin-bottom: 18px;
}

.summary-grid label {
  font-weight: 700;
  color: #1f2633;
}

/* TOTAL */
.summary-total {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
}

/* TERMENI */
.terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.terms a {
  color: #1e6fff;
  text-decoration: underline;
}

/* BUTON */
.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   FORMULAR CONTACT – VARIANTĂ COMPACTĂ
=============================== */

.contact-form-full {
  padding: 28px;
}

/* TITLURI */
.contact-form-full h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-form-full h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* INPUTURI */
.field label {
  font-size: 14px;
  margin-bottom: 4px;
}

.field input,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* RAND CAMPURI */
.contact-row {
  gap: 14px;
  margin-bottom: 12px;
}

/* OBSERVATII */
.field.full textarea {
  min-height: 80px;
}

/* LINIE SEPARARE */
.contact-form-full hr {
  margin: 18px 0;
}

/* REZUMAT */
.summary-grid {
  gap: 6px 16px;
  margin-bottom: 12px;
}

.summary-grid label {
  font-size: 14px;
  font-weight: 600;
}

/* TOTAL */
.summary-total {
  font-size: 18px;
  margin-bottom: 12px;
}

/* TERMENI */
.terms {
  font-size: 14px;
  margin-bottom: 14px;
}

/* BUTON */
.submit-btn {
  padding: 14px;
  font-size: 16px;
  border-radius: 14px;
}
/* Micșorează spațiul între Observații și Rezumat comandă */
.field.full {
  margin-bottom: 12px;
}

/* Micșorează spațiul de deasupra Rezumat comandă */
.contact-form-full h4 {
  margin-top: 8px;
}

/* Ascunde prețurile din Opțiuni suplimentare */
.options .opt-price {
  display: none;
}
/* Ascunde total sistem video */
.opt-video-price {
  display: none;
}
/* Titlu galben nou pentru pachet */
.mini-ok-label {
  background: rgba(246,194,91,.95);
  color: #071a32;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: 15px;
}

.incl-title {
  justify-content: flex-start;
  gap: 14px;
}
/* Centrează badge-ul pachetului */
.incl-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.incl-icon {
  display: none; /* ascunde icon-ul din stânga pentru centrare perfectă */
}

.mini-ok-label {
  text-align: center;
}
/* Permite cardului albastru să aibă înălțime automată */
.package {
  height: auto !important;
  align-self: flex-start;
  padding-bottom: 20px;
}

/* Micșorează spațiul sub buton */
.package .btn-outline {
  margin-bottom: 0;
}
/* Card albastru premium */
.card-dark.package {
  background: linear-gradient(180deg, #0b2345 0%, #102f5c 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-radius: 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card-dark.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.package .btn-outline {
    font-size: clamp(15px, 2vw, 20px);
  font-weight: 800;
  padding: 16px 24px;
  border-width: 3px;
  border-radius: 18px;
  transition: all .25s ease;
	
}

.package .btn-outline:hover {
  background: var(--gold);
  color: #071a32;
  transform: scale(1.02);
}
.checklist li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.4;
}
.mini-ok-label {
  transition: transform .3s ease;
}

.mini-ok-label:hover {
  transform: scale(1.05);
}
/* ===============================
   CARD SOLUȚIE ANTIEFRACȚIE – ALBASTRU PREMIUM
=============================== */

.solution-card {
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b2345 0%, #102f5c 100%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  color: #ffffff;
}

.solution-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #ffffff;
}

.solution-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}

.solution-card p:last-child {
  margin-bottom: 0;
}