:root {
  --sv-dark: #181c2c;
  --sv-dark-soft: #23283a;
  --sv-white: #ffffff;
  --sv-gold: #f3c543;
  --sv-gold-deep: #ddb12d;
  --sv-line: rgba(243, 197, 67, 0.85);
  --sv-lavender: #eef4ff;
  --sv-muted: rgba(255, 255, 255, 0.78);
  --sv-shadow: 0 18px 40px rgba(24, 28, 44, 0.18);
}

.sv-page {
  background: var(--sv-white);
  font-family: "Nunito Sans", sans-serif;
  color: #111;
}

.sv-shell {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

.sv-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #111;
}

.sv-hero-slides,
.sv-hero-slide {
  position: absolute;
  inset: 0;
}

.sv-hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.8s ease,
    transform 4.2s ease;
}

.sv-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.sv-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.sv-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.sv-arrow-prev {
  left: 1.5rem;
}

.sv-arrow-next {
  right: 1.5rem;
}

.sv-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: 0.7rem;
  transform: translateX(-50%);
}

.sv-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.sv-dot.is-active {
  background: var(--sv-gold);
}

.sv-badges {
  background: #f5f8ff;
  padding: 2.5rem 0 2.8rem;
}

.sv-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.sv-badge-card {
  padding: 3.2rem 1rem 2.3rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(226, 183, 66, 0.7);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(16, 33, 63, 0.06);
}

.sv-badge-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.4rem;
  color: #111;
}

.sv-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sv-badge-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sv-dark);
}

.sv-offer {
  padding: 0 0 3.5rem;
  background: var(--sv-dark);
}

.sv-offer-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.sv-offer-copy {
  padding: 3.5rem 0 1rem;
  color: #fff;
}

.sv-offer-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.sv-slider-markers {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.4rem 0 1.7rem;
}

.sv-slider-markers span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sv-gold);
}

.sv-slider-markers span:last-child {
  width: 62px;
  height: 5px;
  border-radius: 999px;
}

.sv-offer-copy p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.08rem;
  line-height: 1.8;
}

.sv-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.5rem 0 0;
  align-items: stretch;
}

.sv-offer-card {
  position: relative;
  min-height: 205px;
  perspective: 1200px;
}

.sv-offer-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 205px;
  transform-style: preserve-3d;
  transition: transform 0.65s ease;
}

.sv-offer-card:hover .sv-offer-card-inner,
.sv-offer-card:focus-within .sv-offer-card-inner {
  transform: rotateY(180deg);
}

.sv-offer-face {
  position: absolute;
  inset: 0;
  min-height: 205px;
  padding: 1.25rem;
  border: 1px solid rgba(226, 183, 66, 0.9);
  border-radius: 14px;
  background: rgba(10, 34, 77, 0.95);
  box-shadow: 0 0 16px rgba(240, 182, 26, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
}

.sv-offer-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.sv-offer-icon {
  margin-bottom: 1rem;
  color: var(--sv-gold);
  font-size: 2.25rem;
}

.sv-offer-card h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.sv-offer-back {
  transform: rotateY(180deg);
  padding: 1.4rem;
}

.sv-offer-back {
  gap: 0;
}

.sv-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-width: 138px;
  min-height: 56px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd861, var(--sv-gold));
  color: #111;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.sv-offer-front-cta {
  background: #1f1f1f;
}

.sv-offer-front-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd861, var(--sv-gold));
  color: #121212;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.sv-quote {
  position: relative;
  background: #0a244f;
  overflow: hidden;
}

.sv-quote-bg,
.sv-quote-overlay {
  position: absolute;
  inset: 0;
}

.sv-quote-bg {
  background: url("../img/security/getaquit.webp") center/cover no-repeat;
  transform: scale(1.05);
}

.sv-quote-overlay {
  background: linear-gradient(90deg, rgba(8, 31, 70, 0.78), rgba(8, 31, 70, 0.58));
}

.sv-quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 4rem 0 4.6rem;
}

.sv-quote-form h2,
.sv-quote-copy h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.sv-quote-form h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.sv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.4rem;
}

.sv-form-grid input,
.sv-form-grid select,
.sv-form-grid textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 1rem;
  padding: 1.15rem 1.15rem;
  font-family: inherit;
}

.sv-form-grid textarea {
  min-height: 210px;
  resize: vertical;
  grid-column: 1 / -1;
}

.sv-form-grid button {
  width: 275px;
  max-width: 100%;
  min-height: 76px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd861, var(--sv-gold));
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.sv-quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.sv-quote-copy h3 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.18;
  margin-bottom: 2rem;
}

.sv-gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 78px;
  padding: 0.9rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd861, var(--sv-gold));
  color: #111;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sv-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240, 182, 26, 0.25);
}

.sv-circle-band {
  padding: 3rem 0 3.4rem;
  background: var(--sv-dark);
}

.sv-circle-head {
  margin-bottom: 2rem;
  color: #fff;
}

.sv-circle-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.sv-circle-head p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.sv-circle-carousel {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 1rem;
  align-items: center;
}

.sv-circle-nav {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.sv-circle-track {
  position: relative;
  min-height: 460px;
  align-items: end;
  overflow: hidden;
}

.sv-circle-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(30%, 340px);
  color: #fff;
  text-align: center;
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
}

.sv-circle-card span {
  display: block;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-circle-image {
  width: min(410px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.sv-circle-card.is-left,
.sv-circle-card.is-right {
  opacity: 0.68;
  filter: blur(0.4px);
}

.sv-circle-card.is-center {
  opacity: 1;
  filter: none;
  z-index: 2;
}

.sv-circle-card.is-left {
  transform: translateX(-145%) scale(0.78);
}

.sv-circle-card.is-center {
  transform: translateX(-50%) scale(1);
}

.sv-circle-card.is-right {
  transform: translateX(45%) scale(0.78);
}

.sv-circle-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.sv-circle-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.sv-circle-dots button.is-active {
  width: 42px;
  border-radius: 999px;
  background: var(--sv-gold);
}

.sv-company {
  position: relative;
  min-height: 860px;
  padding: 4.5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sv-company-bg {
  position: absolute;
  inset: 0;
  background: url("../img/security/ltd.jpg") center/cover no-repeat;
  filter: brightness(0.92);
}

.sv-company::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 45, 99, 0.12);
}

.sv-company .sv-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2rem));
}

.sv-company-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 4rem 4.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--sv-shadow);
  text-align: center;
}

.sv-company-card h2,
.sv-testimonials-head h2,
.sv-gallery-head h2,
.sv-survey-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}

.sv-company-card p {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1.65;
}

.sv-company-card .sv-gold-btn {
  margin-top: 2rem;
}

.sv-testimonials {
  padding: 4.8rem 0 4.2rem;
  background: #f7faff;
}

.sv-testimonials-head {
  text-align: center;
  margin-bottom: 2rem;
}

.sv-testimonials-head p {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: #666;
}

.sv-testimonial-slider {
  overflow: hidden;
}

.sv-testimonial-viewport {
  overflow: hidden;
  padding-bottom: 1rem;
}

.sv-testimonial-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.sv-testimonial-card {
  flex: 0 0 calc((100% - 2.8rem) / 3);
  min-height: 100%;
  padding: 2rem 2rem 2.2rem;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sv-card-pink {
  background: linear-gradient(180deg, #23283a, #181c2c);
}

.sv-card-green {
  background: linear-gradient(180deg, #2b3146, #181c2c);
}

.sv-card-purple {
  background: linear-gradient(180deg, #31384f, #181c2c);
}

.sv-quote-mark {
  font-size: 5rem;
  line-height: 1;
  opacity: 0.92;
}

.sv-testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  flex: 1;
}

.sv-stars {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.sv-person {
  margin-top: 1.5rem;
}

.sv-avatar {
  width: 104px;
  height: 104px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.95);
  background-position: center;
  background-size: cover;
}

.sv-person h3 {
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.sv-person span {
  display: block;
  margin-top: 0.35rem;
  color: #666;
  font-size: 0.95rem;
}

.sv-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4.5rem;
}

.sv-testimonial-dots button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e5e5e5;
  cursor: pointer;
}

.sv-testimonial-dots button.is-active {
  background: #2d2942;
}

.sv-gallery {
  padding: 3.5rem 0 4rem;
  background: var(--sv-dark);
}

.sv-gallery-head {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.sv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sv-gallery-item {
  appearance: none;
  width: 100%;
  min-height: 160px;
  background-position: center;
  background-size: cover;
  border-left: 3px solid rgba(226, 183, 66, 0.8);
  border-right: 3px solid rgba(226, 183, 66, 0.8);
  border-top: 0;
  border-bottom: 0;
  background-color: transparent;
  cursor: zoom-in;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.sv-gallery-item:hover {
  transform: translateY(-4px);
  filter: brightness(1.03);
}

.sv-gallery .sv-gold-btn {
  display: flex;
  width: fit-content;
  margin: 2.4rem auto 0;
}

.sv-accreditations {
  padding: 2.4rem 0;
  background: #fff;
}

.sv-accreditation-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  justify-items: center;
}

.sv-accreditation-item {
  width: 100%;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 28, 44, 0.06);
}

.sv-accreditation-item img {
  width: 170px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sv-accreditation-note {
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
}

.sv-survey {
  padding: 1.5rem 0 2.4rem;
  background: #fff;
}

.sv-survey-card {
  padding: 4.6rem 1.5rem;
  border-radius: 36px;
  background:
    linear-gradient(rgba(238, 244, 255, 0.95), rgba(238, 244, 255, 0.95)),
    url("../img/normal.jfif") center/cover no-repeat;
  text-align: center;
}

.sv-survey-card p {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.sv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sv-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sv-lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  border-radius: 14px;
  box-shadow: var(--sv-shadow);
}

.sv-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .sv-offer-layout,
  .sv-quote-grid {
    grid-template-columns: 1fr;
  }

  .sv-offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sv-circle-track,
  .sv-badges-grid,
  .sv-gallery-grid,
  .sv-accreditation-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-circle-carousel {
    grid-template-columns: 1fr;
  }

  .sv-circle-nav {
    display: none;
  }

  .sv-quote-copy {
    align-items: flex-start;
    text-align: left;
  }

  .sv-circle-card {
    width: min(38%, 340px);
  }

  .sv-circle-card.is-left {
    transform: translateX(-135%) scale(0.76);
  }

  .sv-circle-card.is-right {
    transform: translateX(35%) scale(0.76);
  }
}

@media (max-width: 820px) {
  .sv-hero {
    min-height: 620px;
  }

  .sv-badges-grid,
  .sv-offer-grid,
  .sv-form-grid,
  .sv-testimonial-track,
  .sv-gallery-grid,
  .sv-accreditation-row {
    grid-template-columns: 1fr;
  }

  .sv-offer-card {
    min-height: 185px;
  }

  .sv-offer-card-inner,
  .sv-offer-face {
    min-height: 185px;
  }

  .sv-company-card {
    padding: 2.4rem 1.5rem;
  }

  .sv-company {
    min-height: 680px;
    padding: 3rem 0;
  }

  .sv-circle-track {
    min-height: 360px;
  }

  .sv-circle-card {
    width: min(72%, 360px);
  }

  .sv-circle-card.is-left {
    transform: translateX(-122%) scale(0.72);
  }

  .sv-circle-card.is-right {
    transform: translateX(22%) scale(0.72);
  }

  .sv-testimonial-card {
    flex-basis: calc((100% - 1.4rem) / 2);
  }
}

@media (max-width: 560px) {
  .sv-shell {
    width: min(100% - 1rem, 1320px);
  }

  .sv-hero {
    min-height: 520px;
  }

  .sv-arrow {
    display: none;
  }

  .sv-quote-grid {
    padding: 3rem 0 3.5rem;
  }

  .sv-offer-card:hover .sv-offer-card-inner,
  .sv-offer-card:focus-within .sv-offer-card-inner {
    transform: none;
  }

  .sv-offer-face {
    position: relative;
  }

  .sv-offer-back {
    display: none;
  }

  .sv-circle-track {
    min-height: 300px;
  }

  .sv-company {
    min-height: auto;
    padding: 2rem 0;
  }

  .sv-company-card {
    padding: 2rem 1rem;
    border-radius: 14px;
  }

  .sv-company-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .sv-circle-card {
    width: 88%;
  }

  .sv-circle-card.is-left,
  .sv-circle-card.is-right {
    opacity: 0;
    pointer-events: none;
  }

  .sv-circle-card.is-center {
    transform: translateX(-50%) scale(1);
  }

  .sv-testimonial-card {
    flex-basis: 100%;
  }

  .sv-form-grid button,
  .sv-gold-btn {
    width: 100%;
    min-width: 0;
  }
}
