html, body {
  margin: 0;
  padding: 0;
  /*height: 100%;*/
  font-family: 'Helvetica Neue', sans-serif;
  background: white;
  overflow: hidden;
}

.fixed-wrapper {
  /*width: 100vw;*/
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: 100%;
  max-width: 1000px;
  /*height: 100vh;*/
  /*display: flex;*/
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

header {
  text-align: center;
  /*font-size: 13px;*/
}

h1 {
  font-size: 38px;
  margin: 5px 0;
}
.h1-f{
    font-size: 38px  !important;
}

.subtext {
  font-size: 18px !important;
  color: #555;
  margin-bottom: 10px;
}

.main-body {
  flex: 1;
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.secure{
    font-size:24px;
}


/* LEFT: Bundle */
.bundle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  gap: 6px;
}

.bundle-img-wrapper {
  position: relative;
  width: 100%;
  
}

.bundle-img {
  width: 100%;
  border-radius: 6px;
  margin: 0 auto;
  display: block;
  max-width: 300px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: gold;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 10px;
}

h4 {
  font-size:22px;
  text-align:center;
      margin: 0 auto;
}
h5{
    margin: 4px 0;
    font-size:14px;
    text-align:center;
        margin: 0 auto;
}

.devices {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.payments {
  max-width: 180px;
  margin: 0 auto;
  display: block;
  
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.features li {
  margin: 3px 0;
  font-size:16px;
  font-weight: 600;
}

/* RIGHT: Form */
.form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

input, select {
  padding: 12px;
  font-size: 17px !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
.confirm-footer {
  font-size: 11px;
  line-height: 1.4;
  padding-top: 8px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.confirm-footer input[type="checkbox"] {
  margin-right: 5px;
}

.card-row {
  display: flex;
  gap: 4px;
}

.card-row input {
  flex: 1;
}

.card-section {
  margin-top: 16px !important;
  padding: 10px 0;
  border-top: 1px solid #eee;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-section label {
  font-weight: bold;
  color: #333;
  font-size: 17px !important;
}

#card-element {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease-in-out;
  font-size: 17px !important;
}

#card-element.StripeElement--focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
}

#card-element.StripeElement--invalid {
  border-color: #dc3545;
}

#card-errors {
  color: #dc3545;
  font-size: 15px;
  margin-top: 4px;
}

.InputElement{
    font-size: 17px !important;
}

button {
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width:100%;
}

/* Mobile Scaling */
@media screen and (max-height: 667px), (max-width: 720px) {
  .content {
    transform: scale(0.85);
    transform-origin: top center;
  }

  h1 {
    font-size: 17px;
  }

  .subtext, input, select, .cta, .confirm-footer {
    font-size: 11px;
  }

  .cta {
    padding: 6px;
  }

  .badge {
    width: 50px;
    height: 50px;
    font-size: 10px;
  }
}