:root {
  --spacing-1300: 104px;
  --spacing-1100: 88px;
  --spacing-1000: 80px;
  --spacing-800: 64px;
  --spacing-700: 56px;
  --spacing-500: 40px;
  --spacing-400: 32px;
  --spacing-300: 24px;
  --spacing-200: 16px;
  --spacing-100: 8px;
  --spacing-50: 4px;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%; /* Ensure it takes full width */
  height: 100%; /* Ensure it takes full height */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-blue-950, #121725);
}

main {
  min-width: 375px;
  max-width: 428px;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  display: flex; /* Optional: if you need internal alignment */
  flex-direction: column; /* Optional: change based on layout needs */
  padding: 36px;
  background: var(--color-blue-950, #121725);
  position: relative;
}

picture {
  width: 100%; /* Ensure it covers full width */
  height: 100%; /* Ensure it covers full height */
  position: absolute;
  top: 0;
  left: 0;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures no stretching */
  opacity: 0.1; /* Keep your image transparency */
}
.bg-dot-pattern-img {
  display: none;
}
.content {
  width: 303px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 110px 0px;
  gap: var(--spacing-700);
  z-index: 2;
}

h1 {
  color: var(--color-green, #54e6af);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;

  /* mobile/text-preset-1 */
  font-family: Chivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
  text-transform: uppercase;
}
h1 span {
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;

  /* mobile/text-preset-1 */
  font-family: Chivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.content-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
}
.content-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-500);
}

p {
  color: var(--color-blue-300, #c2cbe5);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;

  /* mobile/text-preset-2 */
  font-family: Chivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  opacity: 0.5;
}
.content-services {
  display: flex;
  align-items: center; /* Align logos vertically */
  justify-content: space-between; /* Center logos horizontally */
}
.content-service-logo {
  flex-grow: 0; /* Prevent stretching */
  flex-shrink: 0; /* Prevent shrinking */
  width: auto; /* Maintain intrinsic width */
}
.content-service-logo1 {
  width: 56px;
  height: 17px;
}

.content-service-logo2 {
  width: 45px;
  height: 17px;
}

.content-service-logo3 {
  width: 73px;
  height: 10px;
}

.content-service-logo4 {
  width: 76px;
  height: 15px;
}
.content-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-100);
}
button {
  width: 100%;
  border-radius: 28px;
  background: var(--color-green, #54e6af);
  box-shadow: 0px 2px 4px 0px rgba(84, 230, 175, 0.14);
  padding: 8px var(--spacing-400, 32px);
  color: var(--color-blue-950, #121725);
  font-feature-settings: "liga" off, "clig" off;

  /* desktop/text-preset-3 */
  font-family: Chivo;
  font-size: var(--font-size-desktop-text-preset-3, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 28px */
  border: none;
  cursor: pointer;
  margin: 0px auto;
}
button:hover {
  border-radius: 28px;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.5) 100%
    ),
    var(--color-green, #54e6af);
  box-shadow: 0px 2px 4px 0px rgba(84, 230, 175, 0.14);
}
.content-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Stretch children to fill width */
  width: 100%; /* Make sure the parent container spans the full width */
  gap: var(--spacing-100);
  padding: 0; /* Remove unnecessary padding */
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}
input {
  width: 100%;
  border-radius: 28px;
  background: var(--color-blue-900, #2c344b);
  border: none;
  box-sizing: border-box;
  padding: 10px 32px;
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;

  /* desktop/text-preset-3 */
  font-family: Chivo;
  font-size: var(--font-size-desktop-text-preset-3, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 28px */
}
input:focus {
  outline: none; /* Removes focus outline */
  border: none; /* Removes border */
}
input::placeholder {
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;

  /* desktop/text-preset-3 */
  font-family: Chivo;
  font-size: var(--font-size-desktop-text-preset-3, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  opacity: 0.5;
}

.content-cta span {
  align-self: center;
  color: var(--color-red, #fb3e3e);
  font-family: Chivo;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: none;
}
@media (min-width: 600px) and (max-width: 1024px) {
  main {
    max-width: none;
    min-width: none;
    width: 768px; /* Full width */
    height: 1024px; /* Full height */
    display: flex; /* Optional: if you need internal alignment */
    flex-direction: column; /* Optional: change based on layout needs */
    padding: 44px;
    background: var(--color-blue-950, #121725);
    position: relative;
    overflow: hidden;
  }

  picture img {
    width: 460px;
    height: 868px;
    object-fit: unset;
    opacity: 0.8;
    background: var(--color-green, #54e6af);
    margin-left: auto;
    display: block;
  }
  .content {
    width: 592px;
    height: 712px;
    gap: var(--spacing-1300);
    align-items: start;
    margin: 112px 0px;
  }

  h1 {
    text-align: left;
    font-size: 48px;
  }
  h1 span {
    font-size: 48px;
  }
  .content-inner {
    background: var(--color-blue-950, #121725);
    padding-top: var(--spacing-1100);
    padding-right: var(--spacing-800);
  }
  p {
    text-align: left;
    max-width: 448px;
    font-size: 18px;
  }
  .bg-dot-pattern-img {
    display: block;
    position: absolute;
    right: 0px;
    bottom: 102px;
    z-index: 2;
  }

  .content-service-logo1 {
    width: 96px;
    height: 29px;
  }

  .content-service-logo2 {
    width: 78px;
    height: 29px;
  }

  .content-service-logo3 {
    width: 125px;
    height: 17px;
  }

  .content-service-logo4 {
    width: 129px;
    height: 26px;
  }
  input {
    width: 448px;
    height: 52px;
  }
  button {
    height: 54px;
    right: 273px;
    width: 173px;
    position: absolute;
  }
  .content-text {
    gap: var(--spacing-300);
  }
  .content-services {
    padding-top: 25px;
  }

  .content-services {
    order: 2;
  }

  .content-cta {
    order: 1;
  }
  .content-cta span {
    padding: 0 32px;
    color: var(--color-red, #fb3e3e);
    font-family: Chivo;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: start;
    display: none;
  }
}

@media (min-width: 1024px) {
  main {
    max-width: none;
    min-width: none;
    width: 1440px; /* Full width */
    height: 960px; /* Full height */
    display: flex; /* Optional: if you need internal alignment */
    flex-direction: column; /* Optional: change based on layout needs */
    padding: var(--spacing-1000);
    background: var(--color-blue-950, #121725);
    position: relative;
    overflow: hidden;
    padding-left: 160px;
  }

  picture img {
    width: 960px;
    height: 654px;
    object-fit: unset;
    opacity: 0.8;
    background: var(--color-green, #54e6af);
    margin-left: auto;
    display: block;
    position: absolute;
    right: -64px;
    bottom: 153px;
  }
  .content {
    width: 736px;
    height: 654px;
    gap: var(--spacing-1300);
    align-items: start;
    margin: 73px 0px;
  }

  h1 {
    text-align: left;
    font-size: 48px;
  }
  h1 span {
    font-size: 48px;
  }
  .content-inner {
    background: var(--color-blue-950, #121725);
    padding-top: var(--spacing-1100);
    padding-right: var(--spacing-800);
  }
  p {
    text-align: left;
    max-width: 448px;
    font-size: 18px;
  }
  .bg-dot-pattern-img {
    display: block;
    position: absolute;
    right: 0px;
    bottom: 102px;
    z-index: 2;
  }

  .content-service-logo1 {
    width: 96px;
    height: 29px;
  }

  .content-service-logo2 {
    width: 78px;
    height: 29px;
  }

  .content-service-logo3 {
    width: 125px;
    height: 17px;
  }

  .content-service-logo4 {
    width: 129px;
    height: 26px;
  }
  input {
    width: 448px;
    height: 52px;
  }
  button {
    right: 225px;
    top: 0px;
    width: 173px;
    height: 52px;
    position: absolute;
  }
  .content-text {
    gap: var(--spacing-300);
  }
  .content-services {
    padding-top: 25px;
  }

  .content-services {
    order: 2;
  }

  .content-cta {
    order: 1;
    position: relative;
  }
  .content-cta span {
    align-self: start;
    padding: 0 32px;
    color: var(--color-red, #fb3e3e);
    font-family: Chivo;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: none;
  }
}
