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

:root {
  --sky: #4da8da;
  --sky-light: #e8f4fd;
  --sky-dark: #1a6fa0;
  --desert: #d4a06a;
  --desert-light: #f5e6d3;
  --desert-dark: #b8834a;
  --white: #ffffff;
  --bg: #f0f6fb;
  --text: #1e2d3d;
  --text-light: #5a6d7e;
  --text-muted: #8fa3b4;
  --card: #ffffff;
  --border: rgba(77, 168, 218, .12);
  --radius: 16px;
  --shadow: 0 4px 20px rgba(30, 45, 61, .06);
  --glow: 0 0 40px rgba(77, 168, 218, .08);
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7
}



/* ─── HERO ─── */
.hero {
  background: #0a1628;
  padding: 0 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 110vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 110vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
  filter: brightness(.4) saturate(1.1)
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg);
  border-radius: 50px 50px 0 0;
  z-index: 3
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(10, 22, 40, .9) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(77, 168, 218, .15) 0%, transparent 40%, rgba(212, 160, 106, .1) 100%);
  pointer-events: none;
  z-index: 1
}

/* ─── TOP BAR ─── */
.hero-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.hero-brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, .5)
}

.hero-brand-text {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  text-align: center;
}

.hero-profile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

/* ─── PROFILE CARD ─── */
.hero-profile-card {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  padding: 6px;
  transition: all .3s
}

.hero-profile-card:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  border: 3.5px solid rgba(255, 255, 255, .75);
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3)
}

.hero-trust-tagline {
  color: #e8d08df0;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .4px;
  margin-top: 4px;
  padding: 5px 16px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(232, 208, 141, .25);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.hero-profile-info {
  text-align: left
}

.hero-credit {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.2px
}

.hero-role {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 500;
  margin-top: 3px
}

/* ─── HERO LINKS ─── */
.hero-links {
  display: flex;
  gap: 8px
}

.hero-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 6px
}

.whatsapp-link {
  background: rgba(37, 211, 102, .15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, .25);
  backdrop-filter: blur(8px)
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, .3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .2)
}

.portfolio-link {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.portfolio-link:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.5px;
  line-height: 1.25;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .4);
}

@media (min-width: 768px) {
  .hero-title {
    white-space: nowrap;
  }
}

.text-gold {
  background: linear-gradient(135deg, #e8d08d 0%, #c49c5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #e8d08d;
  display: inline-block;
  text-shadow: none;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .95);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.hero-subtitle-highlight {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 4px
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 500
}

.hero-trust-item span:first-child {
  font-size: 14px
}

.hero-scroll-prompt {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse-opacity 2s infinite ease-in-out;
}

@keyframes pulse-opacity {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.glow-arrow-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff3b30;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.6), inset 0 0 10px rgba(255, 59, 48, 0.4);
  backdrop-filter: blur(8px);
  animation: neonPulseBounce 2s infinite ease-in-out;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.glow-arrow-container:hover {
  background: rgba(255, 59, 48, 0.25);
  box-shadow: 0 0 25px rgba(255, 59, 48, 0.9), inset 0 0 15px rgba(255, 59, 48, 0.6);
  transform: scale(1.05);
}

@keyframes neonPulseBounce {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.6), inset 0 0 10px rgba(255, 59, 48, 0.4);
  }

  50% {
    transform: translateY(-12px);
    box-shadow: 0 0 35px rgba(255, 59, 48, 1), inset 0 0 18px rgba(255, 59, 48, 0.7);
  }
}

/* ─── PROGRESS ─── */
.progress-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.progress-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px
}

.progress-bar-bg {
  flex: 1;
  height: 7px;
  background: var(--sky-light);
  border-radius: 4px;
  overflow: hidden
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--desert));
  width: 0%;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(77, 168, 218, .3);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.progress-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky-dark);
  min-width: 40px;
  text-align: right
}

/* ─── CONTAINER ─── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1
}

/* ─── SECTION CARDS ─── */
.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
  transition: all .3s;
  opacity: 0;
  transform: translateY(30px);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.section:first-of-type {
  position: relative;
  z-index: 2
}

.section:hover {
  box-shadow: 0 6px 28px rgba(30, 45, 61, .08);
  border-color: rgba(77, 168, 218, .2)
}

/* ─── PORTFOLIO MINI CARD ─── */
.showcase-mini {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fffdf7, #fff);
  border: 2px solid var(--desert-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(212, 160, 106, .12);
  text-decoration: none;
  color: var(--text);
  transition: all .3s;
  cursor: pointer;
}

.showcase-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 106, .2);
  border-color: var(--desert);
}

.showcase-mini-img {
  width: 140px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--desert-light);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.showcase-mini-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showcase-mini-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.showcase-mini-label {
  font-size: 12px;
  color: var(--desert-dark);
  font-weight: 600;
}

.showcase-mini-desc {
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.4;
}

.showcase-wrap {
  margin-bottom: 22px;
  margin-top: 10px;
  position: relative;
  z-index: 3;
}

.showcase-trust-text {
  text-align: center;
  font-size: 12.5px;
  color: var(--desert-dark);
  font-style: italic;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: .2px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sky-light)
}

.section-num {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(77, 168, 218, .25)
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px
}

.section-header h2 span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12.5px;
  display: block;
  margin-top: 1px
}

/* ─── FIELDS ─── */
.field {
  margin-bottom: 22px
}

.field:last-child {
  margin-bottom: 0
}

.field>label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5
}

.field>label .req {
  color: #e74c3c;
  margin-left: 2px;
  font-weight: 700
}

.field>label .hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
  display: block;
  margin-top: 2px;
  line-height: 1.5;
  padding-left: 0
}

.field>label .example {
  font-weight: 400;
  color: var(--sky);
  font-size: 11.5px;
  display: inline-block;
  margin-top: 3px;
  background: var(--sky-light);
  padding: 2px 8px;
  border-radius: 6px
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

/* ─── INPUTS ─── */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  background: #fafcfe;
  border: 1.5px solid #d0dfe8;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--sky);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(77, 168, 218, .1), 0 2px 8px rgba(77, 168, 218, .08)
}

input::placeholder,
textarea::placeholder {
  color: #afc2d0;
  font-size: 13px
}

textarea {
  resize: vertical;
  min-height: 76px
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234da8da' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #fafcfe
}

/* ─── RADIO & CHECKBOX ─── */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.radio-item,
.checkbox-item {
  position: relative
}

.radio-item input,
.checkbox-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.radio-item label,
.checkbox-item label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 16px;
  background: #fafcfe;
  border: 1.5px solid #d0dfe8;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: all .25s;
  margin-bottom: 0;
  line-height: 1.5
}

.radio-item input:checked+label {
  background: var(--sky-light);
  border-color: var(--sky);
  color: var(--sky-dark);
  box-shadow: 0 2px 8px rgba(77, 168, 218, .1)
}

.checkbox-item input:checked+label {
  background: var(--desert-light);
  border-color: var(--desert);
  color: var(--desert-dark);
  box-shadow: 0 2px 8px rgba(212, 160, 106, .1)
}

.radio-item label:hover,
.checkbox-item label:hover {
  border-color: #a0cde4;
  background: #f5fafd;
  color: var(--text)
}

.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c0d4e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  margin-top: 1px
}

.radio-item input:checked+label .radio-dot {
  border-color: var(--sky)
}

.radio-item input:checked+label .radio-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #c0d4e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  font-size: 10px;
  color: transparent;
  margin-top: 1px
}

.checkbox-item input:checked+label .check-box {
  border-color: var(--desert);
  background: var(--desert);
  color: #fff
}

/* ─── YES/NO/LATER TABLE ─── */
.yn-group {
  border: 1.5px solid #dce8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fafcfe
}

.yn-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #eaf1f6;
  align-items: center
}

.yn-row:last-child {
  border-bottom: none
}

.yn-row:nth-child(even) {
  background: rgba(77, 168, 218, .02)
}

.yn-row:hover {
  background: rgba(77, 168, 218, .04)
}

.yn-label {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.yn-label .yn-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px
}

.yn-label-text strong {
  font-size: 13.5px;
  font-weight: 700;
  display: block;
  line-height: 1.3
}

.yn-label-text small {
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.4;
  display: block;
  margin-top: 2px
}

.yn-options {
  padding: 8px 14px;
  display: flex;
  gap: 6px;
  align-items: center
}

.yn-btn {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid #dce8f0;
  background: transparent;
  color: var(--text-muted);
  font-size: 11.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all .2s;
  font-weight: 600
}

.yn-btn:hover {
  border-color: #b0cde0;
  color: var(--text-light);
  background: rgba(77, 168, 218, .04)
}

.yn-btn.active-yes {
  background: rgba(39, 174, 96, .08);
  border-color: #27ae60;
  color: #27ae60;
  box-shadow: 0 1px 6px rgba(39, 174, 96, .12)
}

.yn-btn.active-no {
  background: rgba(231, 76, 60, .06);
  border-color: #e74c3c;
  color: #e74c3c;
  box-shadow: 0 1px 6px rgba(231, 76, 60, .1)
}

.yn-btn.active-later {
  background: rgba(243, 156, 18, .08);
  border-color: #f39c12;
  color: #f39c12;
  box-shadow: 0 1px 6px rgba(243, 156, 18, .1)
}

/* ─── SUBMIT ─── */
.submit-section {
  text-align: center;
  margin-top: 36px
}

.submit-btn {
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark), var(--desert));
  background-size: 200% 200%;
  animation: shimmer 3s ease infinite;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 8px 28px rgba(77, 168, 218, .3);
  letter-spacing: .3px
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(77, 168, 218, .35)
}

.submit-btn:active {
  transform: translateY(-1px)
}

/* ─── RESULT ─── */
#resultSection {
  display: none;
  border-color: var(--sky);
  margin-top: 36px;
  border: 2px solid var(--sky)
}

#resultSection pre {
  background: #f4f8fb;
  border-radius: 12px;
  padding: 22px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Plus Jakarta Sans', monospace;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid var(--border)
}

.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.copy-btn {
  padding: 10px 20px;
  background: var(--sky-light);
  border: 1.5px solid var(--sky);
  border-radius: 10px;
  color: var(--sky-dark);
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  font-weight: 600;
  transition: all .2s;
}

.copy-btn:hover {
  background: var(--sky);
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-btn {
  padding: 10px 20px;
  background: #25d366;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ─── FOOTER ─── */
.footer {
  text-align: center;
  padding: 36px 0 0;
  border-top: 2px solid var(--sky-light);
  margin-top: 28px
}

.footer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid var(--sky);
  vertical-align: middle;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(77, 168, 218, .15)
}

.footer-name {
  font-size: 14px;
  color: var(--text);
  margin-left: 10px;
  vertical-align: middle
}

.footer-name strong {
  font-weight: 700
}

.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

.footer-link {
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.footer-link:hover {
  transform: translateY(-1px)
}

.fl-wa {
  color: #25d366;
  background: rgba(37, 211, 102, .06);
  border: 1px solid rgba(37, 211, 102, .15)
}

.fl-wa:hover {
  background: rgba(37, 211, 102, .12)
}

.fl-web {
  color: var(--sky);
  background: rgba(77, 168, 218, .06);
  border: 1px solid rgba(77, 168, 218, .15)
}

.fl-web:hover {
  background: rgba(77, 168, 218, .12)
}

.fl-gh {
  color: var(--text-light);
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .06)
}

.fl-gh:hover {
  background: rgba(0, 0, 0, .06)
}

.fl-li {
  color: #0a66c2;
  background: rgba(10, 102, 194, .06);
  border: 1px solid rgba(10, 102, 194, .12)
}

.fl-li:hover {
  background: rgba(10, 102, 194, .12)
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--white);
  border: 2px solid var(--sky);
  border-radius: 14px;
  padding: 14px 30px;
  color: var(--sky-dark);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

/* ─── RESPONSIVE ─── */

/* Tablets */
@media (max-width: 768px) {
  .hero {
    padding: 0 16px 40px;
    min-height: 100vh;
  }

  .hero-bg-video {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 8px;
  }

  .hero-avatar {
    width: 120px;
    height: 120px;
  }

  .hero-trust-tagline {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 6px;
  }

  .glow-arrow-container {
    width: 44px;
    height: 44px;
  }

  .container {
    padding: 0 14px 60px;
  }

  .section {
    padding: 24px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    padding: 14px 36px;
    font-size: 15px;
  }

  .result-actions {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .hero {
    padding: 0 12px 32px;
  }

  .hero-title {
    font-size: 22px;
    letter-spacing: -0.3px;
  }

  .hero-subtitle {
    font-size: 13.5px;
  }

  .hero-brand-text {
    font-size: 12px;
  }

  .hero-avatar {
    width: 110px;
    height: 110px;
  }

  .hero-trust-tagline {
    font-size: 11px;
    padding: 5px 14px;
  }

  .hero-link {
    font-size: 12px;
    padding: 8px 18px;
  }

  .hero-trust-item {
    font-size: 10px;
  }

  .scroll-text {
    font-size: 11px;
  }

  .glow-arrow-container {
    width: 40px;
    height: 40px;
  }

  .glow-arrow-container svg {
    width: 22px;
    height: 22px;
  }

  .hero-topbar {
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 20px 14px;
    margin-bottom: 16px;
  }

  .section-header {
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .section-header h2 {
    font-size: 16px;
  }

  .section-num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
  }

  .radio-item label,
  .checkbox-item label {
    font-size: 13px;
    padding: 10px 12px;
  }

  .yn-row {
    flex-direction: column;
    gap: 10px;
  }

  .yn-label {
    padding: 10px 12px;
  }

  .yn-options {
    justify-content: flex-start;
    padding: 0 12px 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 14px;
  }

  .submit-btn {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
  }

  #resultSection pre {
    font-size: 11.5px;
    padding: 16px;
    line-height: 1.7;
  }

  .copy-btn,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .footer {
    padding: 24px 0 0;
  }

  .footer-name {
    font-size: 13px;
  }

  .footer-avatar {
    width: 44px;
    height: 44px;
  }

  .progress-inner {
    padding: 0 14px;
  }
}