@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #111130;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.45rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #65C7F7;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #003989;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::selection {
  background-color: #65C7F7;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #05050a;
}

::-webkit-scrollbar-thumb {
  background: #12121a;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
@media (max-width: 1023px) {
  .header {
    background: #222238;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
  }
}
.header__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .header__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 60px;
}
@media (max-width: 767px) {
  .header__container {
    height: 70px;
    justify-content: space-between;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  z-index: 2;
}
.header__logo-icon {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}
@media (max-width: 767px) {
  .header__logo-icon {
    height: 60px;
  }
}
.header__nav {
  flex: 1;
}
@media (min-width: 1024px) {
  .header__nav {
    background: rgba(21, 29, 48, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: max-content;
  }
}
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #001f3f 100%);
    padding: 100px 3rem 4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(101, 199, 247, 0.4);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: 1050;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
}
.header__nav-item {
  position: relative;
}
@media (max-width: 1023px) {
  .header__nav-item--language {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.header__nav-link {
  color: #a0aec0;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  display: block;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #ffffff;
}
@media (max-width: 1023px) {
  .header__nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    position: relative;
  }
  .header__nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
    border-radius: 0 3px 3px 0;
    transition: all 0.3s ease;
  }
  .header__nav-link:hover {
    background: rgba(101, 199, 247, 0.1);
    color: #65C7F7;
  }
  .header__nav-link:hover::before {
    height: 70%;
  }
}
.header__language-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #a0aec0;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  background: transparent;
  border-radius: 0.5rem;
}
.header__language-toggle:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 1023px) {
  .header__language-toggle {
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
  .header__language-toggle:hover {
    background: rgba(101, 199, 247, 0.1);
  }
}
.header__language-flag {
  font-size: 1em;
  line-height: 1;
}
.header__language-text {
  font-size: 1rem;
}
.header__language-arrow {
  transition: all 0.3s ease;
}
.header__nav-item--language.is-open .header__language-arrow {
  transform: rotate(180deg);
}
.header__language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(21, 29, 48, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.5rem;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
}
.header__nav-item--language.is-open .header__language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 200px;
}
@media (max-width: 1023px) {
  .header__language-dropdown {
    position: static;
    transform: none;
    margin-top: 0.75rem;
    background: rgba(0, 31, 63, 0.5);
    border: 1px solid rgba(101, 199, 247, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    opacity: 0;
    max-height: 0;
  }
  .header__nav-item--language.is-open .header__language-dropdown {
    opacity: 1;
    max-height: 200px;
  }
}
.header__language-option {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  color: #a0aec0;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
  font-size: 0.95rem;
}
.header__language-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.header__language-option--active {
  color: #ffffff;
  background: rgba(101, 199, 247, 0.2);
}
.header__menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.75rem;
  z-index: 1051;
  position: relative;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .header__menu-toggle {
    display: flex;
  }
}
.header__menu-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.header__menu-toggle.is-active .header__menu-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__menu-toggle.is-active .header__menu-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.is-active .header__menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header__cta-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  background: transparent;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  margin-left: auto;
}
.header__cta-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 1023px) {
  .header__cta-btn {
    display: none;
  }
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1049;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .header__overlay {
    display: none;
  }
}

.footer {
  background: #222238;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .footer__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 639px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__column--brand {
  gap: 1.5rem;
}
.footer__logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(101, 199, 247, 0.5));
}
@media (max-width: 767px) {
  .footer__logo img {
    height: 60px;
  }
}
.footer__description {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 400px;
}
.footer__description strong {
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer__description {
    font-size: 0.75rem;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #a0aec0;
}
@media (max-width: 767px) {
  .footer__nav {
    font-size: 0.75rem;
  }
}
.footer__nav-link {
  color: #a0aec0;
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  color: #65C7F7;
}
.footer__nav-separator {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}
.footer__contact-group, .footer__info-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact-label, .footer__info-label {
  font-size: 0.75rem;
  color: #718096;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.footer__contact-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer__contact-link:hover {
  color: #65C7F7;
}
@media (max-width: 767px) {
  .footer__contact-link {
    font-size: 0.95rem;
  }
}
.footer__info-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__info-text {
    font-size: 0.95rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background-image: url("../assets/bg.png");
  background-repeat: repeat;
  background-size: 800px;
  background-position: center;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 70px;
    min-height: 90vh;
  }
}
.hero__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .hero__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero__container {
  position: relative;
  z-index: 1;
}
.hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__title--highlight {
  background: linear-gradient(135deg, #65C7F7 0%, #0d51b0 50%, #a3a3ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__description {
  font-size: 1.25rem;
  color: #65C7F7;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (max-width: 767px) {
  .hero__description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.hero__cta {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(101, 199, 247, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  margin: 0 auto;
  text-decoration: none;
  display: inline-flex;
}
.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(101, 199, 247, 0.5);
  color: #ffffff;
}
.hero__cta:hover .hero__cta-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero__cta {
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
  }
}
.hero__cta-text {
  color: #ffffff;
}
.hero__cta-icon {
  transition: all 0.3s ease;
}
.hero__cta:hover .hero__cta-icon {
  transform: translateX(4px);
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}
.hero__gradient--1 {
  background: radial-gradient(circle, rgba(101, 199, 247, 0.8) 0%, rgba(101, 199, 247, 0.4) 100%);
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
}
@media (max-width: 767px) {
  .hero__gradient--1 {
    width: 300px;
    height: 300px;
  }
}
.hero__gradient--2 {
  background: radial-gradient(circle, rgba(0, 57, 137, 0.7) 0%, rgba(0, 57, 137, 0.3) 100%);
  bottom: 15%;
  right: 10%;
  width: 450px;
  height: 450px;
  animation-delay: -4s;
}
@media (max-width: 767px) {
  .hero__gradient--2 {
    width: 280px;
    height: 280px;
  }
}
.hero__gradient--3 {
  background: radial-gradient(circle, rgba(101, 199, 247, 0.6) 0%, rgba(101, 199, 247, 0.2) 100%);
  top: 40%;
  right: 20%;
  width: 380px;
  height: 380px;
  animation-delay: -6s;
}
@media (max-width: 767px) {
  .hero__gradient--3 {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}
.transform {
  padding: 6rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(101, 199, 247, 0.15) 0%, transparent 50%);
}
@media (max-width: 767px) {
  .transform {
    padding: 4rem 0 3rem;
  }
}
.transform__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .transform__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.transform__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .transform__title {
    font-size: 2.5rem;
  }
}
.transform__description {
  font-size: 1.25rem;
  color: #a0aec0;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .transform__description {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .transform__description br {
    display: none;
  }
}

.metrics {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .metrics {
    padding: 3rem 0;
  }
}
.metrics__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .metrics__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.metrics__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .metrics__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.metrics__item {
  background: #222238;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.metrics__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}
.metrics__item:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
}
.metrics__item:hover::before {
  opacity: 0.1;
}
.metrics__item > * {
  position: relative;
  z-index: 1;
}
.metrics__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: #05050a;
  border-radius: 9999px;
  border: 2px solid rgba(101, 199, 247, 0.2);
}
.metrics__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .metrics__icon {
    width: 40px;
    height: 40px;
  }
}
.metrics__value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .metrics__value {
    font-size: 1.5rem;
  }
}
.metrics__label {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.4;
}

.services {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(101, 199, 247, 0.15) 0%, transparent 50%);
}
@media (max-width: 767px) {
  .services {
    padding: 4rem 0;
  }
}
.services__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .services__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.services__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .services__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .services__title br {
    display: none;
  }
}
.services__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .services__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.services__image-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  background: #222238;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 1023px) {
  .services__image-container {
    height: 400px;
    order: 1;
  }
}
@media (max-width: 767px) {
  .services__image-container {
    height: 300px;
  }
}
.services__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.services__image--active {
  opacity: 1;
  z-index: 1;
}
.services__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .services__accordion {
    order: 2;
  }
}
.services__item {
  background: #12121a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.services__item:hover {
  border-color: rgba(101, 199, 247, 0.3);
}
.services__item--active {
  border-color: rgba(101, 199, 247, 0.5);
}
.services__header {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}
.services__header:hover {
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 767px) {
  .services__header {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}
.services__item--active .services__header {
  background: rgba(101, 199, 247, 0.05);
}
.services__title-text {
  flex: 1;
}
.services__icon {
  flex-shrink: 0;
  color: #65C7F7;
  transition: all 0.3s ease;
  margin-left: 1rem;
}
.services__item--active .services__icon {
  transform: rotate(180deg);
}
.services__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background-color: #222238;
}
@media (max-width: 767px) {
  .services__body {
    padding: 0 1rem;
  }
}
.services__item--active .services__body {
  max-height: 500px;
  padding: 0 1.5rem 1rem;
}
@media (max-width: 767px) {
  .services__item--active .services__body {
    padding: 0 1rem 0.75rem;
  }
}
.services__description {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  margin-top: 0.75rem;
  background-color: #222238;
}
@media (max-width: 767px) {
  .services__description {
    font-size: 0.75rem;
  }
}

.feature {
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .feature {
    padding: 4rem 0;
  }
}
.feature__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .feature__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.feature__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .feature__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .feature--reverse .feature__container .feature__content {
    order: 2;
  }
  .feature--reverse .feature__container .feature__mockup {
    order: 1;
  }
}
@media (max-width: 1023px) {
  .feature__content {
    order: 2;
  }
}
.feature__tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(101, 199, 247, 0.15);
  color: #65C7F7;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(101, 199, 247, 0.3);
}
.feature__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .feature__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .feature__title br {
    display: none;
  }
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #a0aec0;
  font-size: 1rem;
}
.feature__list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  border-radius: 0.25rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}
.feature__list-text {
  flex: 1;
  line-height: 1.6;
}
.feature__mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1023px) {
  .feature__mockup {
    order: 1;
  }
}
.feature__phone {
  position: relative;
  width: 300px;
  height: 600px;
  background: #12121a;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 60px rgba(101, 199, 247, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .feature__phone {
    width: 250px;
    height: 500px;
    padding: 0.75rem;
  }
}
.feature__phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #05050a;
  border-radius: 9999px;
  z-index: 2;
}
@media (max-width: 767px) {
  .feature__phone::before {
    width: 80px;
    height: 16px;
  }
}
.feature__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  overflow: hidden;
  background: #05050a;
}
.feature__phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(101, 199, 247, 0.15) 0%, transparent 50%);
}
@media (max-width: 767px) {
  .success {
    padding: 4rem 0;
  }
}
.success__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .success__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.success__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .success__title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .success__title br {
    display: none;
  }
}

.case-study {
  margin-bottom: 8rem;
}
.case-study:last-child {
  margin-bottom: 0;
}
.case-study__content {
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .case-study__content {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }
}
.case-study__mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .case-study__mockup {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
    margin-bottom: 2rem;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
  }
}
.case-study__phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, rgba(101, 199, 247, 0.25) 0%, rgba(0, 57, 137, 0.25) 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(101, 199, 247, 0.25);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(101, 199, 247, 0.2);
}
@media (max-width: 767px) {
  .case-study__phone {
    width: 320px;
    height: 640px;
    border-radius: 44px;
    padding: 14px;
  }
}
.case-study__phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #05050a;
  border-radius: 0 0 20px 20px;
  z-index: 3;
}
@media (max-width: 767px) {
  .case-study__phone::before {
    width: 80px;
    height: 16px;
  }
}
.case-study__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(25, 30, 45, 0.95) 0%, rgba(15, 20, 35, 0.98) 100%);
  border: 1px solid rgba(101, 199, 247, 0.2);
  box-shadow: inset 0 0 20px rgba(101, 199, 247, 0.05);
}
@media (max-width: 767px) {
  .case-study__phone-screen {
    border-radius: 24px;
  }
}
.case-study__phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study__testimonial {
  position: absolute;
  bottom: -20px;
  left: -40px;
  max-width: 380px;
  background: linear-gradient(135deg, rgba(30, 35, 60, 0.95) 0%, rgba(20, 25, 50, 0.98) 100%);
  border: 1px solid rgba(101, 199, 247, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(101, 199, 247, 0.1);
  z-index: 3;
  overflow: hidden;
}
.case-study__testimonial::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(101, 199, 247, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.case-study__testimonial::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 57, 137, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .case-study__testimonial {
    position: absolute;
    max-width: calc(100% - 3rem);
    margin: 0;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 10;
  }
}
@media (max-width: 767px) {
  .case-study__testimonial {
    padding: 1rem;
    width: 100%;
    bottom: 1.5rem;
  }
}
.case-study__testimonial-icon {
  width: 40px;
  height: 40px;
  color: #65C7F7;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .case-study__testimonial-icon {
    width: 32px;
    height: 32px;
  }
}
.case-study__testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .case-study__testimonial-text {
    font-size: 0.75rem;
  }
}
.case-study__testimonial-author {
  font-size: 0.75rem;
  color: #ffffff;
  font-style: italic;
}
.case-study__details {
  position: relative;
  z-index: 2;
  margin-left: 50%;
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .case-study__details {
    margin-left: 0;
    padding-left: 0;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 2rem;
    order: 1;
  }
}
.case-study--reversed .case-study__mockup {
  left: auto;
  right: 0;
}
.case-study--reversed .case-study__details {
  margin-left: 0;
  margin-right: 50%;
  padding-left: 0;
  padding-right: 4rem;
}
@media (max-width: 1023px) {
  .case-study--reversed .case-study__mockup {
    right: auto;
  }
  .case-study--reversed .case-study__details {
    margin-right: 0;
    padding-right: 0;
  }
}
.case-study__title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .case-study__title {
    font-size: 1.25rem;
  }
}
.case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}
.case-study__tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}
.case-study__tag--primary {
  background: rgba(236, 72, 153, 0.15);
  color: #f9a8d4;
  border-color: rgba(236, 72, 153, 0.3);
}
.case-study__tag--secondary {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}
.case-study__tag--accent {
  background: rgba(101, 199, 247, 0.15);
  color: #65C7F7;
  border-color: rgba(101, 199, 247, 0.3);
}
.case-study__tag--tech {
  background: rgba(101, 199, 247, 0.1);
  color: #65C7F7;
  border-color: rgba(101, 199, 247, 0.25);
  font-size: 0.75rem;
}
.case-study__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.case-study__tech-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 31, 63, 0.5);
  border: 1px solid rgba(101, 199, 247, 0.3);
  border-radius: 0.5rem;
  font-size: 16px;
  color: #65C7F7;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.case-study__tech-item::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding: 0.5rem 0.75rem;
  background: rgba(0, 31, 63, 0.95);
  border: 1px solid rgba(101, 199, 247, 0.5);
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  font-weight: 500;
}
.case-study__tech-item::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(101, 199, 247, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.case-study__tech-item:hover {
  background: rgba(101, 199, 247, 0.15);
  border-color: rgba(101, 199, 247, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 199, 247, 0.2);
}
.case-study__tech-item:hover::after, .case-study__tech-item:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.case-study__tech-item:hover::before {
  transform: translateX(-50%);
}
.case-study__tech-item i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study__section:not(:last-child) {
  margin-bottom: 1rem;
}
.case-study__section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.case-study__section-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #65C7F7;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .case-study__section-title {
    font-size: 0.95rem;
  }
}
.case-study__section-text {
  color: #a0aec0;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .case-study__section-text {
    font-size: 0.75rem;
  }
}
.case-study__section-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.case-study__section-list-item {
  color: #a0aec0;
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.case-study__section-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #65C7F7;
  font-weight: 700;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .case-study__section-list-item {
    font-size: 0.75rem;
    padding-left: 0.75rem;
  }
}
.case-study__results {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(101, 199, 247, 0.1);
}
.case-study__results-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .case-study__results-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.case-study__results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .case-study__results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .case-study__results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: #222238;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 199, 247, 0.4);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .result-card {
    padding: 1rem 1rem;
    gap: 0.75rem;
  }
}
.result-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .result-card__title {
    font-size: 1rem;
  }
}
.result-card__before {
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .result-card__before {
    font-size: 10px;
  }
}
.result-card__now {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.result-card__now strong {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .result-card__now strong {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .result-card__now {
    font-size: 0.75rem;
  }
}
.result-card__arrow {
  width: 36px;
  height: 36px;
  margin: 0.5rem auto 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.result-card__arrow svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .result-card__arrow {
    width: 32px;
    height: 32px;
    margin-top: 0.5rem;
  }
  .result-card__arrow svg {
    width: 16px;
    height: 16px;
  }
}
.result-card__arrow--up {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.result-card:hover .result-card__arrow--up {
  transform: translateY(-4px);
}
.result-card__arrow--down {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.result-card:hover .result-card__arrow--down {
  transform: translateY(4px);
}

.stats {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .stats {
    padding: 4rem 0;
  }
}
.stats__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .stats__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.stats__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .stats__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .stats__container {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  background: #12121a;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.stats__item:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 126, 234, 0.3);
}
.stats__item:hover::before {
  opacity: 0.1;
}
.stats__item > * {
  position: relative;
  z-index: 1;
}
.stats__value {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .stats__value {
    font-size: 0.95rem;
  }
  .stats__value br {
    display: none;
  }
}
.stats__label {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .stats__label {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .stats__label br {
    display: none;
  }
}
.stats__number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #65C7F7 0%, #003989 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .stats__number {
    font-size: 1.5rem;
  }
}

.cta {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(101, 199, 247, 0.15) 0%, transparent 50%);
}
@media (max-width: 767px) {
  .cta {
    padding: 4rem 0;
  }
}
.cta__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .cta__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cta__container {
  max-width: 1200px;
}
.cta__title {
  font-size: 2.5rem;
  margin-bottom: 6rem;
  text-align: left;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .cta__title br {
    display: none;
  }
}
.cta__form {
  background: rgba(26, 26, 46, 0.4);
  border: 2px solid rgba(101, 199, 247, 0.3);
  border-radius: 1.5rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .cta__form {
    padding: 3rem;
    gap: 1.5rem;
  }
}
.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 767px) {
  .cta__form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.cta__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cta__form-group--full {
  grid-column: 1/-1;
}
.cta__form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}
.cta__form-input, .cta__form-textarea {
  width: 100%;
  padding: 0.75rem 0 0 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
.cta__form-input:focus, .cta__form-textarea:focus {
  outline: none;
  border-bottom-color: #65C7F7;
}
.cta__form-input::placeholder, .cta__form-textarea::placeholder {
  color: #718096;
}
.cta__form-textarea {
  resize: vertical;
  min-height: 80px;
  padding: 0.75rem 0 0 0;
}
.cta__form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .cta__form-radio-group {
    gap: 1rem;
  }
}
.cta__form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}
.cta__form-radio input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta__form-radio input[type=radio]:checked {
  border-color: #65C7F7;
  background: #65C7F7;
}
.cta__form-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}
.cta__form-radio input[type=radio]:hover {
  border-color: #65C7F7;
}
.cta__form-radio span {
  font-size: 1rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cta__form-radio span {
    font-size: 0.95rem;
  }
}
.cta__form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cta__form-actions {
    justify-content: stretch;
    margin-top: 0.75rem;
  }
}
.cta__form-submit {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  background: transparent;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta__form-submit:hover {
  border-color: #65C7F7;
  box-shadow: 0 0 20px rgba(101, 199, 247, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .cta__form-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
