@charset "UTF-8";
/* ====== Phoenix Agency - Dark Premium Enhanced =====*/
/*
Design System: Dark Tech / Cinematic / Premium
- Multi-layered atmospheric backgrounds
- Subtle geometric patterns and glows
- Premium glass-morphism effects
- Professional depth without aggression
*/

/* ====== CSS Variables ====== */
:root {
  /* Color Palette - Dark Premium */
  --bg-primary: #0a0e1a;
  --bg-secondary: #141824;
  --bg-card: #1a1f2e;
  --bg-card-hover: #222838;

  /* Accent Colors - Calm Teal/Cyan */
  --accent-primary: #00d4ff;
  --accent-secondary: #0099cc;
  --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e8eaed;
  --text-muted: #a0a4b8;
  --text-dim: #6b7280;

  /* Border & Divider Colors */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 4px 20px rgba(0, 212, 255, 0.2);
  --shadow-accent-strong: 0 8px 32px rgba(0, 212, 255, 0.25);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s ease;
}

/* ====== Base Styles ====== */
body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
button,
input {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover,
button:hover,
input:hover {
  text-decoration: none;
}

a:focus,
button:focus,
input:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-family);
}

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

/* ====== Enhanced Multi-Layer Background ====== */
.wrapper {
  width: 100%;
  min-height: 100vh;
  background: #0a0e1a;
  position: relative;
  overflow: hidden;
}

/* Layer 1: Base gradient */
.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      #0a0e1a 0%,
      #0d1120 25%,
      #141824 50%,
      #0f1219 75%,
      #0a0e1a 100%);
  z-index: 0;
}

/* Layer 2: Radial glow top-left */
.wrapper::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center,
      rgba(0, 212, 255, 0.08) 0%,
      rgba(0, 212, 255, 0.04) 30%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Layer 3: Geometric grid pattern */
.intro_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Layer 4: Diagonal accent lines */
.intro_section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(0, 212, 255, 0.03) 45%,
      rgba(0, 212, 255, 0.05) 50%,
      rgba(0, 212, 255, 0.03) 55%,
      transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Layer 5: Subtle noise texture */
.intro_section {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ====== Intro Section ====== */
.intro_section {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 1;
}

.intro_logo_area {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.intro_logo_area a {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition-base);
}

.intro_logo_area a:hover {
  opacity: 0.85;
}

.intro_logo_area img {
  max-height: 4.25rem;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.intro_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.intro_content>h1,
.intro_content>p {
  text-align: left;
}

.intro_label {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(10px);
}

.intro_title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.intro_text {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ====== Premium Video Card ====== */
.intro_video {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  background: linear-gradient(135deg,
      rgba(26, 31, 46, 0.6) 0%,
      rgba(20, 24, 36, 0.4) 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all var(--transition-slow);
}

.intro_video:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(0, 212, 255, 0.2),
    0 0 40px rgba(0, 212, 255, 0.1);
}

/* Glass-morphism inner container */
.intro_video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
  border-radius: var(--radius-2xl);
  pointer-events: none;
  z-index: 1;
}

/* Subtle accent glow */
.intro_video::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.6),
      transparent);
  border-radius: 2px;
  opacity: 0.6;
  z-index: 2;
}

.intro_video .video_overlay {
  position: absolute;
  inset: 1.25rem;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,
      rgba(10, 14, 26, 0.4) 0%,
      rgba(10, 14, 26, 0.1) 100%);
  border-radius: calc(var(--radius-2xl) - 1.25rem);
  transition: all var(--transition-base);
  z-index: 3;
}

.intro_video .video_overlay:hover {
  background: linear-gradient(180deg,
      rgba(10, 14, 26, 0.3) 0%,
      rgba(10, 14, 26, 0.05) 100%);
}

.intro_video .video_overlay:hover .video_overlay_icon {
  transform: scale(1.15);
  box-shadow:
    0 12px 40px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(0, 212, 255, 0.3);
}

/* Custom minimal play button */
.intro_video .video_overlay_icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(0, 212, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Play icon triangle */
.intro_video .video_overlay_icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9rem 0 0.9rem 1.4rem;
  border-color: transparent transparent transparent var(--text-primary);
  margin-left: 0.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Pulsing ring animation */
.intro_video .video_overlay_icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.intro_video .video_overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
}

.intro_video video {
  width: 100%;
  height: auto;
  max-height: 768px;
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius-2xl) - 1.25rem);
  position: relative;
  z-index: 2;
}

/* Start Button */
.start_btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  background: var(--accent-gradient);
  box-shadow:
    var(--shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.start_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.start_btn:hover::before {
  left: 100%;
}

.start_btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.start_btn:active {
  transform: translateY(0);
}

/* ====== Quiz Section ====== */
.quiz_section {
  display: none;
  position: relative;
  z-index: 1;
}

.quiz_section.is-active {
  display: block;
}

.intro_hidden {
  display: none !important;
}

/* Quiz background layers */
.quiz_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse at center,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Logo Area in Quiz */
.logo_area {
  padding-top: 2rem;
  padding-left: 3rem;
  position: relative;
  z-index: 2;
}

/* Progress Circle */
.count_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 2rem;
  padding-right: 3rem;
  position: relative;
  z-index: 2;
}

.count_progress {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: none;
  margin: 0;
  box-shadow: none;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.2));
}

.count_progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid var(--accent-primary);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.3),
    inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.count_progress.clip-1:after {
  clip: rect(0rem, 9.5em, 4em, 4rem);
}

.count_progress.clip-2:after {
  clip: rect(0rem, 9.5em, 8em, 3rem);
}

.count_progress.clip-3:after {
  clip: rect(0rem, 7.5em, 8em, 2rem);
}

.count_progress.clip-4:after {
  clip: rect(0rem, 7.5em, 8em, 0rem);
}

.count_progress.clip-5:after {
  clip: rect(0rem, 7.5em, 8em, 0rem);
}

.count_progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.count_progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 100%;
  background: linear-gradient(135deg, #1a1f2e 0%, #141824 100%);
  font-size: 1.375rem;
  color: var(--text-primary);
  line-height: 89px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  font-weight: 700;
  border: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ====== Premium Quiz Form ====== */
.multisteps_form {
  max-width: 56rem;
  min-height: 46rem;
  margin: 3rem auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg,
      rgba(26, 31, 46, 0.95) 0%,
      rgba(20, 24, 36, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

/* Top accent line */
.multisteps_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.5) 30%,
      rgba(0, 212, 255, 0.8) 50%,
      rgba(0, 212, 255, 0.5) 70%,
      transparent);
  z-index: 1;
}

/* Subtle corner glow */
.multisteps_form::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.multisteps_form_panel {
  display: none;
  position: relative;
  z-index: 2;
}

/* Question Title */
.question_title {
  text-align: center;
  padding: 4rem 3rem 0;
  position: relative;
}

.question_title h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.question_title p {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Question Number Badge */
.question_number {
  text-align: center;
  margin-top: 1.5rem;
}

.question_number span {
  display: inline-block;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Form Items (Radio Options) */
.form_items {
  padding: 3rem 2.5rem 2rem;
}

.form_items li {
  position: relative;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  list-style: none;
}

.form_items li label {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Subtle shine effect */
.form_items li label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.form_items li label:hover::before {
  left: 100%;
}

/* Radio circle */
.form_items li label::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  flex: 0 0 auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  order: -1;
}

.form_items li input {
  display: none;
}

.form_items li label:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form_items li.active label {
  color: var(--text-primary);
  border-color: var(--accent-primary);
  background: linear-gradient(135deg,
      rgba(0, 212, 255, 0.12) 0%,
      rgba(0, 212, 255, 0.06) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.3),
    0 4px 20px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form_items li.active label::after {
  border-color: var(--accent-primary);
  background: var(--accent-primary);
  box-shadow:
    0 0 0 4px rgba(0, 212, 255, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.form_items li.is-invalid label {
  border-color: #ef4444;
  color: #fca5a5;
  box-shadow:
    0 0 0 2px rgba(239, 68, 68, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.form_items li.is-invalid label::after {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
  box-shadow: none;
}

/* Form Fields (Text Inputs) */
.form_fields {
  row-gap: 1.5rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 3rem;
  padding: 0 2.5rem;
}

.form_field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form_field label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form_field input {
  width: 100%;
  height: 3.25rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  color: var(--text-primary);
  padding: 0 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all var(--transition-base);
  font-family: var(--font-family);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

.form_field input::placeholder {
  color: var(--text-dim);
}

.form_field input:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 212, 255, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 212, 255, 0.15);
}

.form_field input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form_field.has-error label {
  color: #ef4444;
}

.form_field input.invalid {
  border-color: #ef4444;
  box-shadow:
    0 0 0 2px rgba(239, 68, 68, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form_error_message {
  font-size: 0.8125rem;
  color: #fca5a5;
  min-height: 1rem;
  display: block;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.form_error_message.is-visible {
  opacity: 1;
}

.form_contact_message {
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: #fca5a5;
  display: none;
}

/* Alert Overlay */
.phoenix-alert-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
}

.phoenix-alert-overlay.is-visible {
  display: flex;
}

.phoenix-alert {
  width: 100%;
  max-width: 28rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
      rgba(26, 31, 46, 0.98) 0%,
      rgba(20, 24, 36, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.phoenix-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.6),
      transparent);
}

.phoenix-alert__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.phoenix-alert__message {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.phoenix-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 12rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--accent-gradient);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow:
    var(--shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.phoenix-alert__btn:focus,
.phoenix-alert__btn:hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.phoenix-alert__btn:active {
  transform: translateY(0);
}

.phoenix-alert__btn:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.5);
  outline-offset: 3px;
}

/* Form Buttons */
.form_btn {
  padding-bottom: 3rem;
  position: relative;
}

.next_btn {
  position: absolute;
  right: 3.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 3rem;
  outline: none;
  border: none;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  box-shadow:
    var(--shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.next_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.next_btn:hover::before {
  left: 100%;
}

.next_btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.next_btn:active {
  transform: translateY(0);
}

.next_btn.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.prev_btn {
  position: absolute;
  left: 3.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.prev_btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.prev_btn:active {
  transform: scale(0.98);
}

.prev_btn span {
  margin-right: 0.5rem;
}

/* ====== Animations ====== */
.animate_25ms {
  animation-delay: 25ms;
}

.animate_50ms {
  animation-delay: 50ms;
}

.animate_100ms {
  animation-delay: 100ms;
}

.animate_150ms {
  animation-delay: 150ms;
}

.animate_200ms {
  animation-delay: 200ms;
}

/* ====== Responsive Design ====== */
@media (min-width: 1500px) {
  .container {
    max-width: 1510px;
  }
}

/* Tablet & Below (max-width: 991px) */
@media screen and (max-width: 991.98px) {
  .intro_section {
    padding: 4rem 0 3rem;
  }

  .intro_section::after {
    width: 400px;
    height: 400px;
  }

  .intro_logo_area {
    justify-content: center;
    margin-bottom: 2.5rem;
  }

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

  .intro_content>h1,
  .intro_content>p {
    text-align: center;
  }

  .intro_video {
    margin-top: 2rem;
    padding: 1rem;
  }

  .intro_title {
    font-size: 2.5rem;
  }

  .intro_text {
    font-size: 1rem;
    max-width: 100%;
  }

  .question_title {
    padding: 3rem 2.5rem 0;
  }

  .question_title h1 {
    font-size: 2rem;
  }

  .question_title p {
    font-size: 0.9375rem;
  }

  .form_items {
    padding: 2.5rem 2rem 1.5rem;
  }

  .form_items li {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .form_items li label {
    font-size: 1rem;
    padding: 1.125rem 1.25rem;
    min-height: 4rem;
  }

  .form_items li label::after {
    width: 1.375rem;
    height: 1.375rem;
  }

  .form_field input {
    height: 3rem;
  }

  .next_btn {
    font-size: 0.9375rem;
    padding: 0.75rem 2.5rem;
    right: 2.5rem;
  }

  .prev_btn {
    font-size: 0.9375rem;
    left: 2.5rem;
  }
}

/* Mobile Landscape & Below (max-width: 767px) */
@media screen and (max-width: 767.98px) {
  .intro_section {
    padding: 3.5rem 0 2.5rem;
  }

  .intro_section::after {
    width: 300px;
    height: 300px;
  }

  .intro_video {
    margin-top: 1.5rem;
    padding: 0.75rem;
  }

  .intro_video .video_overlay_icon {
    width: 4rem;
    height: 4rem;
  }

  .intro_title {
    font-size: 2rem;
  }

  .intro_text {
    font-size: 0.9375rem;
  }

  .multisteps_form {
    min-height: 38rem;
    margin: 2rem auto;
  }

  .question_title {
    padding: 2.5rem 1.5rem 0;
  }

  .question_title h1 {
    font-size: 1.75rem;
    margin-top: 1rem;
  }

  .question_title p {
    font-size: 0.875rem;
  }

  .question_number {
    margin-top: 1rem;
  }

  .question_number span {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .form_items {
    padding: 2rem 1.5rem 1rem;
  }

  .form_items li {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .form_items li label {
    font-size: 0.9375rem;
    padding: 1rem 1.125rem;
    min-height: 3.75rem;
  }

  .form_items li label::after {
    width: 1.25rem;
    height: 1.25rem;
  }

  .form_fields {
    padding: 0 1.5rem;
  }

  .form_field {
    gap: 0.375rem;
  }

  .form_field input {
    height: 2.875rem;
    font-size: 0.9375rem;
    padding: 0 1rem;
  }

  .next_btn {
    font-size: 0.875rem;
    padding: 0.6875rem 2rem;
    right: 2rem;
  }

  .prev_btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    left: 2rem;
  }
}

/* Mobile Portrait (max-width: 575px) */
@media screen and (max-width: 575.98px) {
  .phoenix-alert {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .phoenix-alert__title {
    font-size: 1.375rem;
  }

  .phoenix-alert__message {
    font-size: 0.9375rem;
  }

  .phoenix-alert__btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .intro_logo_area {
    margin-bottom: 2rem;
  }

  .logo_area {
    text-align: center;
    padding-left: 0 !important;
    padding-top: 1.5rem !important;
  }

  .count_box {
    padding-right: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .count_progress {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }

  .count_progress .progress-value {
    font-size: 1.125rem;
    line-height: 71px;
  }

  .multisteps_form {
    min-height: 34rem;
    margin: 1.5rem auto;
  }

  .question_title {
    padding: 2rem 1.25rem 0;
  }

  .question_title h1 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  .question_title p {
    font-size: 0.8125rem;
  }

  .form_items {
    padding: 1.75rem 1.25rem 0.75rem;
  }

  .form_items li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .form_items li label {
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    min-height: 3.5rem;
    gap: 0.75rem;
  }

  .form_items li label::after {
    width: 1.125rem;
    height: 1.125rem;
  }

  .form_fields {
    padding: 0 1.25rem;
    row-gap: 1.25rem;
  }

  .next_btn {
    font-size: 0.8125rem;
    padding: 0.625rem 1.75rem;
    right: 1.5rem;
  }

  .prev_btn {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
    left: 1.5rem;
  }
}

/* Small Mobile (max-width: 409px) */
@media screen and (max-width: 409.98px) {
  .multisteps_form {
    min-height: 32rem;
  }

  .question_title h1 {
    font-size: 1.375rem;
  }

  .form_items li {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .form_items li label {
    font-size: 0.8125rem;
    padding: 0.75rem 0.875rem;
    min-height: 3.25rem;
  }

  .form_items li label::after {
    width: 1rem;
    height: 1rem;
  }

  .form_field input {
    height: 2.75rem;
    font-size: 0.875rem;
  }

  .next_btn {
    font-size: 0.75rem;
    padding: 0.5625rem 1.5rem;
  }

  .prev_btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }
}

/* Extra Small Mobile (max-width: 379px) */
@media screen and (max-width: 379.98px) {
  .question_title h1 {
    font-size: 1.25rem;
  }
}

/* Tiny Mobile (max-width: 319px) */
@media screen and (max-width: 319.98px) {
  .question_title h1 {
    font-size: 1.125rem;
  }

  .form_items li {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }

  .form_items li label {
    font-size: 0.75rem;
    padding: 0.6875rem 0.75rem;
    min-height: 3rem;
  }

  .form_items li label::after {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .form_field input {
    height: 2.625rem;
    font-size: 0.8125rem;
  }
}

/* ====== Phoenix Agency - Dark Premium Redesign =====*/
/*
Design System:
- Dark corporate / SaaS aesthetic
- Navy/Charcoal backgrounds
- Calm teal/cyan accents
- High contrast, professional
- EU/Ukraine friendly
- Trust-based visual language
*/

/* ====== CSS Variables ====== */
:root {
  /* Color Palette - Dark Premium */
  --bg-primary: #0a0e1a;
  --bg-secondary: #141824;
  --bg-card: #1a1f2e;
  --bg-card-hover: #222838;

  /* Accent Colors - Calm Teal/Cyan */
  --accent-primary: #00d4ff;
  --accent-secondary: #0099cc;
  --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e8eaed;
  --text-muted: #a0a4b8;
  --text-dim: #6b7280;

  /* Border & Divider Colors */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(0, 212, 255, 0.2);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s ease;
}

/* ====== Base Styles ====== */
body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
button,
input {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover,
button:hover,
input:hover {
  text-decoration: none;
}

a:focus,
button:focus,
input:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-family);
}

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

/* ====== Layout ====== */
.wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #141824 50%, #0f1219 100%);
  position: relative;
}

.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ====== Intro Section ====== */
.intro_section {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 1;
}

.intro_logo_area {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}

.intro_logo_area a {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition-base);
}

.intro_logo_area a:hover {
  opacity: 0.85;
}

.intro_logo_area img {
  max-height: 4.25rem;
  width: auto;
}

.intro_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.intro_content>h1,
.intro_content>p {
  text-align: left;
}

.intro_label {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
}

.intro_title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro_text {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* Video Player */
.intro_video {
  position: relative;
}

.intro_video .video_overlay {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.6), rgba(10, 14, 26, 0.2));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  z-index: 2;
}

.intro_video .video_overlay:hover {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.5), rgba(10, 14, 26, 0.1));
}

.intro_video .video_overlay:hover .video_overlay_icon {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.4);
}

.intro_video .video_overlay_icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
  position: relative;
  transition: all var(--transition-base);
}

.intro_video .video_overlay_icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9rem 0 0.9rem 1.3rem;
  border-color: transparent transparent transparent var(--text-primary);
  margin-left: 0.25rem;
}

.intro_video .video_overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
}

.intro_video video {
  width: 100%;
  height: auto;
  max-height: 768px;
  max-width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

/* Start Button */
.start_btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  background: var(--accent-gradient);
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.start_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.35);
}

.start_btn:active {
  transform: translateY(0);
}

/* ====== Quiz Section ====== */
.quiz_section {
  display: none;
  position: relative;
  z-index: 1;
}

.quiz_section.is-active {
  display: block;
}

.intro_hidden {
  display: none !important;
}

/* Logo Area in Quiz */
.logo_area {
  padding-top: 2rem;
  padding-left: 3rem;
}

/* Progress Circle */
.count_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 2rem;
  padding-right: 3rem;
}

.count_progress {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: none;
  margin: 0;
  box-shadow: none;
  position: relative;
}

.count_progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid var(--accent-primary);
  position: absolute;
  top: 0;
  left: 0;
}

.count_progress.clip-1:after {
  clip: rect(0rem, 9.5em, 4em, 4rem);
}

.count_progress.clip-2:after {
  clip: rect(0rem, 9.5em, 8em, 3rem);
}

.count_progress.clip-3:after {
  clip: rect(0rem, 7.5em, 8em, 2rem);
}

.count_progress.clip-4:after {
  clip: rect(0rem, 7.5em, 8em, 0rem);
}

.count_progress.clip-5:after {
  clip: rect(0rem, 7.5em, 8em, 0rem);
}

.count_progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.count_progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 100%;
  background: var(--bg-secondary);
  font-size: 1.375rem;
  color: var(--text-primary);
  line-height: 89px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  font-weight: 700;
  border: 2px solid var(--border-subtle);
}

/* Quiz Form */
.multisteps_form {
  max-width: 56rem;
  min-height: 46rem;
  margin: 3rem auto;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.multisteps_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.multisteps_form_panel {
  display: none;
}

/* Question Title */
.question_title {
  text-align: center;
  padding: 4rem 3rem 0;
}

.question_title h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.question_title p {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Question Number Badge */
.question_number {
  text-align: center;
  margin-top: 1.5rem;
}

.question_number span {
  display: inline-block;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* Form Items (Radio Options) */
.form_items {
  padding: 3rem 2.5rem 2rem;
}

.form_items li {
  position: relative;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  list-style: none;
}

.form_items li label {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.form_items li label:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  flex: 0 0 auto;
}

.form_items li input {
  display: none;
}

.form_items li label:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.form_items li:after,
.form_items li:before {
  content: none;
}

.form_items li.active label {
  color: var(--text-primary);
  border-color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), var(--shadow-md);
}

.form_items li.active label:before {
  border-color: var(--accent-primary);
  background: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
}

.form_items li.is-invalid label {
  border-color: #ef4444;
  color: #fca5a5;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form_items li.is-invalid label:before {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  box-shadow: none;
}

/* Form Fields (Text Inputs) */
.form_fields {
  row-gap: 1.5rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 3rem;
  padding: 0 2.5rem;
}

.form_field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form_field label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form_field input {
  width: 100%;
  height: 3.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  padding: 0 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all var(--transition-base);
  font-family: var(--font-family);
}

.form_field input::placeholder {
  color: var(--text-dim);
}

.form_field input:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form_field input:hover {
  border-color: var(--border-strong);
}

.form_field.has-error label {
  color: #ef4444;
}

.form_field input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form_error_message {
  font-size: 0.8125rem;
  color: #fca5a5;
  min-height: 1rem;
  display: block;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.form_error_message.is-visible {
  opacity: 1;
}

.form_contact_message {
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: #fca5a5;
  display: none;
}

/* Alert Overlay */
.phoenix-alert-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
}

.phoenix-alert-overlay.is-visible {
  display: flex;
}

.phoenix-alert {
  width: 100%;
  max-width: 28rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: var(--text-primary);
}

.phoenix-alert__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.phoenix-alert__message {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.phoenix-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 12rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--accent-gradient);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
}

.phoenix-alert__btn:focus,
.phoenix-alert__btn:hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.35);
}

.phoenix-alert__btn:active {
  transform: translateY(0);
}

.phoenix-alert__btn:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.5);
  outline-offset: 3px;
}

/* Form Buttons */
.form_btn {
  padding-bottom: 3rem;
  position: relative;
}

.next_btn {
  position: absolute;
  right: 3.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 3rem;
  outline: none;
  border: none;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
  cursor: pointer;
}

.next_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.35);
}

.next_btn:active {
  transform: translateY(0);
}

.next_btn.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.prev_btn {
  position: absolute;
  left: 3.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border: 2px solid var(--border-medium);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prev_btn:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
}

.prev_btn:active {
  transform: scale(0.98);
}

.prev_btn span {
  margin-right: 0.5rem;
}

/* ====== Animations ====== */
.animate_25ms {
  animation-delay: 25ms;
}

.animate_50ms {
  animation-delay: 50ms;
}

.animate_100ms {
  animation-delay: 100ms;
}

.animate_150ms {
  animation-delay: 150ms;
}

.animate_200ms {
  animation-delay: 200ms;
}

/* ====== Responsive Design ====== */
@media (min-width: 1500px) {
  .container {
    max-width: 1510px;
  }
}

/* Tablet & Below (max-width: 991px) */
@media screen and (max-width: 991.98px) {
  .intro_section {
    padding: 4rem 0 3rem;
  }

  .intro_logo_area {
    justify-content: center;
    margin-bottom: 2.5rem;
  }

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

  .intro_content>h1,
  .intro_content>p {
    text-align: center;
  }

  .intro_video {
    margin-top: 2rem;
  }

  .intro_title {
    font-size: 2.5rem;
  }

  .intro_text {
    font-size: 1rem;
    max-width: 100%;
  }

  .question_title {
    padding: 3rem 2.5rem 0;
  }

  .question_title h1 {
    font-size: 2rem;
  }

  .question_title p {
    font-size: 0.9375rem;
  }

  .form_items {
    padding: 2.5rem 2rem 1.5rem;
  }

  .form_items li {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .form_items li label {
    font-size: 1rem;
    padding: 1.125rem 1.25rem;
    min-height: 4rem;
  }

  .form_items li label:before {
    width: 1.375rem;
    height: 1.375rem;
  }

  .form_field input {
    height: 3rem;
  }

  .next_btn {
    font-size: 0.9375rem;
    padding: 0.75rem 2.5rem;
    right: 2.5rem;
  }

  .prev_btn {
    font-size: 0.9375rem;
    left: 2.5rem;
  }
}

/* Mobile Landscape & Below (max-width: 767px) */
@media screen and (max-width: 767.98px) {
  .intro_section {
    padding: 3.5rem 0 2.5rem;
  }

  .intro_video {
    margin-top: 1.5rem;
  }

  .intro_title {
    font-size: 2rem;
  }

  .intro_text {
    font-size: 0.9375rem;
  }

  .multisteps_form {
    min-height: 27rem;
    margin: 2rem auto;
  }

  .question_title {
    padding: 2.5rem 1.5rem 0;
  }

  .question_title h1 {
    font-size: 1.75rem;
    margin-top: 1rem;
  }

  .question_title p {
    font-size: 0.875rem;
  }

  .question_number {
    margin-top: 1rem;
  }

  .question_number span {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .form_items {
    padding: 2rem 1.5rem 1rem;
  }

  .form_items li {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .form_items li label {
    font-size: 0.9375rem;
    padding: 1rem 1.125rem;
    min-height: 3.75rem;
  }

  .form_items li label:before {
    width: 1.25rem;
    height: 1.25rem;
  }

  .form_fields {
    padding: 0 1.5rem;
  }

  .form_field {
    gap: 0.375rem;
  }

  .form_field input {
    height: 2.875rem;
    font-size: 0.9375rem;
    padding: 0 1rem;
  }

  .next_btn {
    font-size: 0.875rem;
    padding: 0.6875rem 2rem;
    right: 2rem;
  }

  .prev_btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    left: 2rem;
  }
}

/* Mobile Portrait (max-width: 575px) */
@media screen and (max-width: 575.98px) {
  .phoenix-alert {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .phoenix-alert__title {
    font-size: 1.375rem;
  }

  .phoenix-alert__message {
    font-size: 0.9375rem;
  }

  .phoenix-alert__btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .intro_logo_area {
    margin-bottom: 2rem;
  }

  .logo_area {
    text-align: center;
    padding-left: 0 !important;
    padding-top: 1.5rem !important;
  }

  .count_box {
    padding-right: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .count_progress {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }

  .count_progress .progress-value {
    font-size: 1.125rem;
    line-height: 71px;
  }

  .multisteps_form {
    min-height: 25rem;
    margin: 1.5rem auto;
  }

  .question_title {
    padding: 2rem 1.25rem 0;
  }

  .question_title h1 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  .question_title p {
    font-size: 0.8125rem;
  }

  .form_items {
    padding: 1.75rem 1.25rem 0.75rem;
  }

  .form_items li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .form_items li label {
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    min-height: 3.5rem;
    gap: 0.75rem;
  }

  .form_items li label:before {
    width: 1.125rem;
    height: 1.125rem;
  }

  .form_fields {
    padding: 0 1.25rem;
    row-gap: 1.25rem;
  }

  .next_btn {
    font-size: 0.8125rem;
    padding: 0.625rem 1.75rem;
    right: 1.5rem;
  }

  .prev_btn {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
    left: 1.5rem;
  }
}

/* Small Mobile (max-width: 409px) */
@media screen and (max-width: 409.98px) {
  .multisteps_form {
    min-height: 24rem;
  }

  .question_title h1 {
    font-size: 1.375rem;
  }

  .form_items li {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .form_items li label {
    font-size: 0.8125rem;
    padding: 0.75rem 0.875rem;
    min-height: 3.25rem;
  }

  .form_items li label:before {
    width: 1rem;
    height: 1rem;
  }

  .form_field input {
    height: 2.75rem;
    font-size: 0.875rem;
  }

  .next_btn {
    font-size: 0.75rem;
    padding: 0.5625rem 1.5rem;
  }

  .prev_btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }
}

/* Extra Small Mobile (max-width: 379px) */
@media screen and (max-width: 379.98px) {
  .question_title h1 {
    font-size: 1.25rem;
  }
}

/* Tiny Mobile (max-width: 319px) */
@media screen and (max-width: 319.98px) {
  .question_title h1 {
    font-size: 1.125rem;
  }

  .form_items li {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }

  .form_items li label {
    font-size: 0.75rem;
    padding: 0.6875rem 0.75rem;
    min-height: 3rem;
  }

  .form_items li label:before {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .form_field input {
    height: 2.625rem;
    font-size: 0.8125rem;
  }
}

.electricity_status_opt13 {
  display: flex;
  flex-direction: column;
}