:root {
  --navy: #061A4F;
  --navy2: #0A2A70;
  --pink: #FF2A8B;
  --pink2: #FF62B0;
  --orange: #FF8A00;
  --yellow: #FFC21A;
  --purple: #7B2CFF;
  --bg: #FFF8FC;
  --soft: #F4F7FF;
  --text: #161B2A;
  --muted: #667085;
  --border: #EEE6F2;
  --white: #FFFFFF;
  --shadow: 0 18px 42px rgba(6, 26, 79, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 42, 139, .12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 0, .14), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 45%, var(--soft) 100%);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
}

.site-header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 260px;
  max-width: 78vw;
  height: auto;
  display: block;
}

.logo-fallback {
  font-weight: 950;
  font-size: 26px;
  color: var(--navy);
}

.logo-fallback span {
  color: var(--pink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.nav a:hover {
  color: var(--pink);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: white !important;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 42, 139, .18);
}

.btn:hover,
button:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: white !important;
  color: var(--navy) !important;
  border: 2px solid rgba(6, 26, 79, .12);
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--orange)) !important;
  color: white !important;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  min-width: 160px;
  padding: 10px;
  right: 0;
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  padding: 34px 24px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 248, 252, .92)),
    radial-gradient(circle at 85% 20%, rgba(255, 194, 26, .25), transparent 25%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 290px;
  height: 150px;
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--yellow));
  clip-path: polygon(0 0, 72% 50%, 0 100%, 24% 50%);
  opacity: .16;
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  color: var(--pink);
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(255, 42, 139, .12);
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -2.4px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  margin: 16px 0;
  box-shadow: 0 14px 32px rgba(6, 26, 79, .06);
}

.job-card {
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -40px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 42, 139, .16), rgba(255, 138, 0, .16));
}

.job-card h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 12px 0 8px;
}

.input,
input,
textarea,
select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
  font: inherit;
  min-height: 50px;
}

.input:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 42, 139, .10);
}

.label,
label {
  display: block;
  font-weight: 900;
  color: var(--navy);
  margin: 8px 0 7px;
}

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 13px;
  margin: 4px 4px 4px 0;
}

.badge.pink {
  color: var(--pink);
}

.badge.orange {
  color: var(--orange);
}

.alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin: 14px 0;
  font-weight: 750;
  background: #eef4ff;
}

.alert.error,
.alert-error {
  background: #fff0f7;
  color: #9d104e;
  border: 1px solid #ffc4df;
}

.alert.success,
.alert-success {
  background: #ecfff3;
  color: #07612b;
  border: 1px solid #bdf4cf;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  margin: 14px 0;
  box-shadow: 0 12px 26px rgba(6, 26, 79, .06);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 950;
  margin-bottom: 12px;
}

.step h3 {
  color: var(--navy);
  font-size: 24px;
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  margin-top: 46px;
  background: var(--navy);
  color: white;
}

.site-footer .container {
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-footer p {
  margin: 0;
  opacity: .86;
}

/* Mobile */
@media (max-width: 820px) {
  .container {
    padding: 14px;
  }

  .site-header .flex {
    align-items: center;
    flex-direction: column;
  }

  .logo img {
    width: 230px;
    max-width: 82vw;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .nav a,
  .nav button,
  .btn {
    font-size: 15px;
  }

  .hero {
    margin-top: 16px;
    padding: 26px 20px;
    border-radius: 28px;
  }

  .hero::after {
    width: 190px;
    height: 100px;
    right: -75px;
    top: 24px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 19px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .filters,
  .grid-2,
  .grid-3,
  .two {
    grid-template-columns: 1fr;
  }

  .card {
    border-radius: 22px;
    padding: 18px;
  }

  .job-card h3 {
    font-size: 26px;
  }
}

/* FIX TRICLA */

.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 22px !important;
}

.step {
  display: block !important;
  background: #ffffff !important;
  border: 1px solid #EEE6F2 !important;
  border-radius: 24px !important;
  padding: 22px !important;
  margin: 14px 0 !important;
  box-shadow: 0 12px 26px rgba(6,26,79,.06) !important;
}

.step-number {
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  color: white !important;
  background: linear-gradient(135deg,#FF2A8B,#FF8A00) !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.step h3 {
  margin: 0 0 10px 0 !important;
  color: #061A4F !important;
}

.step p {
  margin: 0 !important;
  color: #667085 !important;
}

.btn-primary,
button,
input[type="submit"] {
  background: linear-gradient(90deg,#FF2A8B,#FF8A00) !important;
  color: white !important;
}

@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
}

.check-row-text-first {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 22px 0;
    font-weight: 800;
    color: var(--navy);
}

.check-row-text-first input[type="checkbox"] {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    accent-color: #1688f0;
}

.textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.4;
}

.hint {
    display: block;
    margin-top: 6px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 600;
}