/* Security Section Styles */

.rand-security {
  background-color: #000628;
  padding: 40px 16px 60px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rand-security {
    padding: 100px 40px;
  }
}

@media (min-width: 992px) {
  .rand-security {
    padding: 150px 60px;
  }
}

/* Background with gradient */
.rand-security__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rand-security__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 6, 40, 0) 70%, #000628 100%);
}

@media (min-width: 992px) {
  .rand-security__background::after {
    background: linear-gradient(to right, rgba(0, 6, 40, 0) 70%, #000628 100%);
  }
}

/* Container */
.rand-security__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .rand-security__container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
}

/* Left Column - Map */
.rand-security__map-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-security__map-column {
    flex: 1;
    max-width: 573px;
    min-width: 0;
  }
}

/* Map Wrapper */
.rand-security__map-wrapper {
  width: 100%;
  max-width: 343px;
}

@media (min-width: 768px) {
  .rand-security__map-wrapper {
    max-width: 450px;
  }
}

@media (min-width: 992px) {
  .rand-security__map-wrapper {
    max-width: 100%;
  }
}

/* Map Image/SVG */
.rand-security__map {
  width: 100%;
  height: auto;
  display: block;
}

/* Partner Logos */
.rand-security__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .rand-security__partners {
    gap: 50px;
  }
}

.rand-security__partner-logo {
  height: 21px;
  width: auto;
}

@media (min-width: 992px) {
  .rand-security__partner-logo {
    height: 35px;
  }
}

/* Right Column - Content */
.rand-security__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-security__content {
    flex: 1;
    max-width: 573px;
    min-width: 0;
  }
}

/* Text Block */
.rand-security__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Label */
.rand-security__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.96px;
  color: #bec7d5;
  text-transform: uppercase;
  margin: 0;
}

/* Title */
.rand-security__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .rand-security__title {
    font-size: 40px;
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .rand-security__title {
    font-size: 50px;
  }
}

/* Features List */
.rand-security__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}

@media (min-width: 992px) {
  .rand-security__features {
    padding: 0;
  }
}

/* Feature Item */
.rand-security__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .rand-security__feature {
    gap: 16px;
  }
}

/* Checkmark Icon */
.rand-security__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .rand-security__check {
    width: 24px;
    height: 24px;
  }
}

/* Feature Text */
.rand-security__feature-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) {
  .rand-security__feature-text {
    font-size: 20px;
    line-height: normal;
  }
}

.rand-security__feature-text a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.rand-security__feature-text a:hover {
  text-decoration: none;
}

/* CTA Button */
.rand-security__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: #2c52f5;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-security__cta {
    width: fit-content;
  }
}

.rand-security__cta:hover {
  background-color: #1e3fd4;
}

/* Disclaimer (Spanish only) */
.rand-security__disclaimer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #bec7d5;
  margin: 0;
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-security__disclaimer {
    padding-top: 40px;
  }
}
