/* Securiky multi-step styles - black/gold luxury base */
:root{
  --bg:#0b0b0c;
  --card:#111217;
  --muted:#a6a6ad;
  --gold:#d4af37;
  --accent:#0f1013;
  --white:#e9e9ec;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body .securiky-header{
  max-width:1140px;
  margin:18px auto;
  color:var(--white);
  display:flex;
  align-items:center;
  gap:12px
}
.securiky-header .headline strong{
  font-size:20px
}
.securiky-header .headline span{
  display:block;
  font-size:12px;
  color:var(--muted)
}
.securiky-header .badges span{
  background: #2a2b31;
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: bold;
  text-transform: uppercase;
}
#securiky-sticky-summary{
  position:sticky;
  top:0;
  background:#0e0f11;
  padding:10px 0;
  border-bottom:1px solid #222;
  z-index:40
}
#securiky-sticky-summary .summary-inner{
  max-width:1140px;
  margin:0 auto;
  color:var(--white);
  display:flex;
  justify-content:space-between;
  padding:6px 12px
}
.securiky-progress{
  max-width:1140px;
  margin:18px auto;
  display:flex;
  gap:8px;
  align-items:center
}
.securiky-progress .step-indicator{
  flex:1;
  background:#131416;
  color:#bfc1c7;
  padding:8px;
  border-radius:999px;
  text-align:center;
  font-size:12px;
  transition: all 0.2s;
}
.securiky-progress .step-indicator.active{
  background:var(--gold);
  color:#111;
  font-weight:700
}

/* form container */
.securiky-form{
  max-width:1140px;
  margin:18px auto;
  background:var(--accent);
  padding:20px;
  border-radius:16px;
  color:var(--white);
  border:1px solid #222
}
.securiky-step{
  display:none
}
.securiky-step.active{
  display:block;
  padding:10px
}

/* Make header tags visible */
.securiky-step h2, .securiky-step h3, .securiky-step h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Increase input field height and style */
.securiky-form input:not([type="radio"]):not([type="checkbox"]):not([type="number"]),
.securiky-form select,
.securiky-form textarea {
    height: 48px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #2a2b31;
    background: #0f1013;
    color: var(--white);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.securiky-form textarea {
    height: auto;
    min-height: 100px;
}
.securiky-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* grid helpers */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:10px
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:10px
}

/* plan grid */
.plan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:16px
}
.plan-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:#0f1013;
  border-radius:14px;
  border:1px solid #222;
  padding:14px;
  cursor:pointer;
  transition:all .2s;
  outline:none
}
.plan-card:hover, .plan-card.selected{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  border-color: var(--gold);
}
.plan-card.popular{
  border:2px solid var(--gold)
}
.plan-card input[type=radio]{
  display:none
}
.plan-card ul {
    list-style-type: none;
}
.plan-badge{
  font-weight:800;
  margin-bottom:8px
}
.plan-price{
  color:var(--gold);
  font-size:18px;
  margin-bottom:8px
}
.plan-list{
  margin:0 0 8px 0px;
  color:var(--muted)
}
.select-cta{
  background:#0b0b0c;
  border-radius:10px;
  padding:8px;
  text-align:center;
  margin-top:auto;
  border:1px solid #222
}

/* addons */
.addon-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px;
  border-radius:10px;
  border:1px solid #1f2026;
  margin-bottom:8px
}
.addon-qty-controls{
  display:flex;
  align-items:center;
  gap:4px;
}
.addon-qty-controls .addon-qty{
  width:60px;
  text-align:center;
  padding:6px;
  margin:0;
  height: auto;
}
.addon-qty-controls .qty-btn{
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    transition: all 0.2s;
}
.addon-qty-controls .qty-btn:hover {
    background: var(--gold);
    color: #111;
}

/* Designed checkboxes and radios, inline with spacing */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}
.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}
/* Hide default input */
.radio-group input,
.checkbox-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkmark/radio button */
.radio-group label .checkmark,
.checkbox-group label .checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #333;
    border: 1px solid #555;
    transition: all 0.2s;
}
.radio-group label .checkmark {
    border-radius: 50%;
}
.checkbox-group label .checkmark {
    border-radius: 4px;
}

/* Checked state styling */
.radio-group input:checked ~ .checkmark,
.checkbox-group input:checked ~ .checkmark {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Inner dot for radios */
.radio-group input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
}

/* Checkmark for checkboxes */
.checkbox-group input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    font-weight: bold;
    color: #111;
}

/* Styles for the new validation message box */
.securiky-message-box {
    background: rgba(22, 22, 26, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: bold;
    display: none; /* Initially hidden */
}
.securiky-message-box.active {
    display: block;
}

/* calc and summary */
.calc{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  margin-top:12px
}
.calc .grand{
  font-weight:800;
  color:var(--gold)
}
.order-summary-box{
  background:#0d0d0f;
  border:1px solid #1e1f24;
  padding:12px;
  border-radius:10px;
}
.muted{
  color:var(--muted)
}

/* Final Review Page Styles */
#review-summary hr {
    border: none;
    border-top: 1px dashed #333;
    margin: 10px 0;
}
#review-summary ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}
#review-summary li,
#review-summary .tot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}
#review-summary li {
    font-size: 0.9em;
}
#review-summary li.muted {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 12px;
}
#review-summary .tot span:first-child {
    font-weight: bold;
}
#review-summary .tot {
    font-size: 1.1em;
}
#review-summary .grand {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--gold);
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 10px;
}

/* buttons */
.securiky-buttons{
  display:flex;
  justify-content:space-between;
  margin-top:16px;
  gap:12px
}
.securiky-btn{
  padding:10px 18px;
  border-radius:10px;
  border:0;
  background:var(--gold);
  color:#111;
  font-weight:700;
  cursor:pointer;
  transition: all 0.2s;
}
.securiky-btn.back{
  background:#16161a;
  color:var(--white);
  border:1px solid #222
}
.securiky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* thank you */
.securiky-thanks{
  max-width:900px;
  margin:24px auto;
  background:#0f1013;
  padding:18px;
  border-radius:12px;
  border:1px solid #222;
  color:var(--white)
}

/* responsive */
@media (max-width:900px){
  .plan-grid{
    grid-template-columns:1fr
  }
  .grid-3{
    grid-template-columns:1fr
  }
  .calc{
    align-items:flex-start
  }
}
