* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  transition: all 0.3s ease;
  color: #333;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #f093fb;
  box-shadow: 0 0 0 3px rgba(240, 147, 251, 0.1);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 40px;
}

.hero-section {
  background-image: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%), url("https://msk.cdn-chatium.io/thumbnail/image_kqz05O6NrJ.1217x968.png/s/800x600");
  background-size: 80%;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 80vh;
  padding: 80px 0;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-8 {
  gap: 32px;
}

.gap-12 {
  gap: 48px;
}

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

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

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-16 {
  margin-bottom: 64px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.py-6 {
  padding: 24px 0;
}

.py-8 {
  padding: 32px 0;
}

.py-16 {
  padding: 64px 0;
}

.py-20 {
  padding: 80px 0;
}

.p-6 {
  padding: 24px;
}

.flex {
  display: flex;
}

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

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.space-y-3 > * + * {
  margin-top: 12px;
}

.space-y-4 > * + * {
  margin-top: 16px;
}

.space-x-3 > * + * {
  margin-left: 12px;
}

.space-x-6 > * + * {
  margin-left: 24px;
}

.w-12 {
  width: 48px;
}

.h-12 {
  height: 48px;
}

.w-16 {
  width: 64px;
}

.h-16 {
  height: 64px;
}

.w-20 {
  width: 80px;
}

.h-20 {
  height: 80px;
}

.w-auto {
  width: auto;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.text-4xl {
  font-size: 36px;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.rounded-full {
  border-radius: 50%;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-2xl {
  border-radius: 16px;
}

.bg-gradient-pink {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.text-green-400 {
  color: #4ade80;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.bg-white-5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(20px);
}

.border-2 {
  border-width: 2px;
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.leading-relaxed {
  line-height: 1.625;
}

.italic {
  font-style: italic;
}

@media (max-width: 1024px) {
  .hero-section {
    background-size: 120%;
    background-position: center bottom;
    min-height: auto;
  }
  .grid-lg-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-section {
    background-size: contain;
    background-position: center 65%;
    padding: 40px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .hidden-mobile {
    display: none;
  }
  .px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.success-message {
  display: none;
}

.success-message.show {
  display: block;
}

.form-container.hide {
  display: none;
}

.hero-section {
  position: relative;
  z-index: 9;
}

/* form */
.wp-custom-form-wrapper .form-field {
  margin-bottom: 16px;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper {
  position: relative;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper input {
  cursor: pointer;
  user-select: none;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper .select {
  overflow: hidden;
  width: 100%;
  max-height: 100em;
  padding: 8px 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 12px 12px;
  background: rgb(255, 255, 255);
  font-size: 16px;
  transition: all 0.3s ease;
  color: #333;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper .select._hide {
  max-height: 0;
  padding: 0;
  border-width: 0;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper .select span {
  display: block;
  padding: 8px 16px;
  transition: 0.25s;
  cursor: pointer;
}
.wp-custom-form-wrapper .wp-custom-form .select-wrapper .select span:hover {
  background-color: #3b82f6;
  color: #ffffff;
}