:root {
  --design-width: 1920;
  --design-width-px: calc(var(--design-width) * 1px);
  --desktop-min-width: 1024;
  --desktop-max-scale: 1.5;
  --page-scale: clamp(
    calc(var(--desktop-min-width) / var(--design-width)),
    calc((100vw / 1px) / var(--design-width)),
    var(--desktop-max-scale)
  );
}

body {
  overflow-x: hidden;
  min-width: calc(var(--desktop-min-width) * 1px);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Global reset moved from HTML head */
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

menu,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.page-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.page-stage__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--design-width-px);
  min-height: 100%;
  transform-origin: top center;
  transform: translateX(-50%) scale(var(--page-scale));
  will-change: transform;
}

.page-stage__header {
  position: fixed;
  top: 0;
  left: 50%;
  width: var(--design-width-px);
  /* height: var(--design-height-px); */
  transform-origin: top center;
  transform: translateX(-50%) scale(var(--page-scale));
  will-change: transform;
}

/* Layout utilities */
.flex {
  display: flex;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: 4px;
}
.gap-8 {
  gap: 8px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-28 {
  gap: 28px;
}
.gap-32 {
  gap: 32px;
}
.gap-64 {
  gap: 64px;
}
.self-stretch {
  align-self: stretch;
}
.relative {
  position: relative;
}

.header a,
.links a,
.btn,
.btn3 {
  text-decoration: none;
  color: inherit;
}

/* Button hover and active effects */
.btn,
.btn3 {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before,
.btn3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* .btn:hover,
.btn3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 205, 134, 0.3);
} */

.btn:hover::before,
.btn3:hover::before {
  opacity: 1;
}

.btn:active,
.btn3:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(10, 205, 134, 0.2);
}

.btn:focus-visible,
.btn3:focus-visible {
  outline: 2px solid rgba(12, 241, 158, 0.5);
  outline-offset: 2px;
}

.links a.is-active span {
  color: #0cf19e;
}

.form2 {
  position: relative;
}

.form-field {
  gap: 12px;
}

.label {
  cursor: pointer;
}

.field {
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field:focus-within {
  border-color: rgba(12, 241, 158, 0.8);
  box-shadow: 0 0 0 3px rgba(12, 241, 158, 0.22);
}

.field--phone {
  display: grid;
  grid-template-columns: auto 1fr;
}

.input {
  position: relative;
  border: none;
  padding: 0;
  flex: 1;
}

.input__control {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #1f1f1f;
  position: relative;
  z-index: 0;
}

.input__control::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.input__control:focus-visible {
  outline: none;
}

.placeholder,
.placeholder2,
.placeholder3,
.placeholder4 {
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.placeholder,
.placeholder2 {
  display: none;
}

.field--phone .input__control {
  padding-left: 12px;
}

.input-addon-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: #f7f7f7;
  border-right: 1px solid #d9d9d9;
}

.input-addon-label .text {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1f1f1f;
}

.frame-2087328060 {
  gap: 12px;
  flex-wrap: wrap;
}

.option-chip {
  position: relative;
  cursor: pointer;
  isolation: isolate;
}

.option-chip > input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.option-chip input:checked + .placeholder3,
.option-chip input:focus-visible + .placeholder3,
.option-chip.is-selected .placeholder3 {
  box-shadow: 0 0 0 2px rgba(12, 241, 158, 0.4);
  border-radius: inherit;
}

.option-chip input:focus-visible + .placeholder3 {
  box-shadow: 0 0 0 2px rgba(12, 241, 158, 0.55);
}

.btn2,
.frame-41965 {
  cursor: pointer;
}

.by-continuing-you-agree-to-our-privacy-policy {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.by-continuing-you-agree-to-our-privacy-policy a {
  color: inherit;
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.frame-41968 {
  position: relative;
}

.newsletter-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #262626;
}

.newsletter-input::placeholder {
  color: #595959;
}

.frame-41968:focus-within {
  box-shadow: 0 0 0 2px rgba(12, 241, 158, 0.22);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* Email link styling */
a.info-text {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* Privacy Policy Page Styling */
.privacy-policy-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 20px 40px 80px 40px; */
}

.privacy-policy-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: left;
  font-family: "Manrope", sans-serif;
}

.privacy-policy-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}

.privacy-policy-content p {
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}

.privacy-policy-content ul {
  margin: 20px 0;
  padding-left: 40px;
}

.privacy-policy-content li {
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  list-style-type: disc;
}

/* Mobile responsive styles for privacy policy */
@media (max-width: 768px) {
  .privacy-policy-content {
    padding: 30px 20px;
  }

  .privacy-policy-content h1 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .privacy-policy-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .privacy-policy-content p,
  .privacy-policy-content li {
    font-size: 14px;
    line-height: 1.7;
  }

  .privacy-policy-content ul {
    padding-left: 24px;
  }
}
