/* ! =========================
    HERO LANDING
  ========================= */

.huevo-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 90px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 178, 233, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(117, 169, 255, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, #fff8fb 0%, #f8f6ff 48%, #f4fbff 100%);
}

.huevo-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -180px;
  right: 60px;
  border: 2px solid rgba(119, 82, 210, 0.08);
  border-radius: 50%;
}

.huevo-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -80px;
  border: 2px solid rgba(119, 82, 210, 0.08);
  border-radius: 50%;
}

.huevo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.huevo-hero-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(122, 79, 221, 0.08);
  color: #00b2e9;
  font-size: 0.9rem;
  font-weight: 700;
}

.huevo-hero-title {
  margin-bottom: 24px;
  color: #2a2340;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.huevo-hero-title span {
  display: block;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.huevo-hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: #59536d;
  font-size: 1.12rem;
  line-height: 1.75;
}

.huevo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.huevo-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 15px;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(103, 92, 246, 0.24);
  transition: all 0.25s ease;
}

.huevo-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(103, 92, 246, 0.3);
}

.huevo-hero-trust {
  max-width: 590px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 79, 221, 0.1);
  box-shadow: 0 12px 26px rgba(42, 35, 64, 0.06);
  color: #4d465f;
  font-size: 0.98rem;
  line-height: 1.55;
  backdrop-filter: blur(10px);

  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.huevo-trust-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(103, 92, 246, 0.22);
}

.huevo-hero-trust strong {
  color: #2a2340;
}

.huevo-hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.huevo-visual-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(145, 103, 255, 0.16) 0%,
    rgba(145, 103, 255, 0.07) 42%,
    transparent 72%
  );
}

.huevo-visual-card {
  position: relative;
  width: 100%;
  max-width: 610px;
  min-height: 430px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 79, 221, 0.08);
  box-shadow: 0 28px 70px rgba(42, 35, 64, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  backdrop-filter: blur(12px);
}

.huevo-visual-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(42, 35, 64, 0.18));
}

.huevo-floating {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(122, 79, 221, 0.1);
  box-shadow: 0 14px 28px rgba(42, 35, 64, 0.1);
  color: #403953;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.huevo-floating.one {
  top: 42px;
  left: 32px;
}

.huevo-floating.two {
  top: 110px;
  right: 28px;
}

.huevo-floating.three {
  bottom: 42px;
  left: 58px;
}

@media (max-width: 991.98px) {
  .huevo-hero {
    padding: 80px 0 70px;
  }

  .huevo-hero-content {
    max-width: 100%;
    margin-bottom: 44px;
  }

  .huevo-hero-visual {
    min-height: 420px;
  }

  .huevo-visual-card {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .huevo-hero {
    padding: 64px 0 56px;
  }

  .huevo-hero-title {
    font-size: 2.55rem;
  }

  .huevo-hero-text {
    font-size: 1rem;
  }

  .huevo-hero-btn {
    width: 100%;
  }

  .huevo-hero-visual {
    min-height: auto;
  }

  .huevo-visual-card {
    min-height: 300px;
    padding: 26px;
    border-radius: 26px;
  }

  .huevo-visual-card img {
    max-height: 250px;
  }

  .huevo-floating {
    font-size: 0.78rem;
    padding: 8px 11px;
  }

  .huevo-floating.one {
    top: 20px;
    left: 18px;
  }

  .huevo-floating.two {
    top: auto;
    bottom: 18px;
    right: 18px;
  }

  .huevo-floating.three {
    display: none;
  }
}

/* ! =========================
    CHARACTER CARD
  ========================= */

.huevo-characters {
  padding: 90px 0;
  background: linear-gradient(180deg, #f4f5f8 0%, #ffffff 100%);
}

.huevo-characters-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 54px;
}

.huevo-characters-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  color: #16181f;
  letter-spacing: -0.03em;
}

.huevo-characters-head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #616779;
}

.huevo-characters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 34px;
}

.huevo-character-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  border-radius: 30px;
  background: linear-gradient(180deg, #111416 0%, #0b0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(15, 17, 25, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.huevo-character-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 17, 25, 0.18);
}

.huevo-character-media {
  position: relative;
  height: 250px;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -42px;
  margin-bottom: 6px;
  padding: 0 18px;
}

.huevo-character-media img {
  width: 100%;
  max-width: 360px;
  height: 270px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.huevo-character-badge-live {
  position: absolute;
  top: 6px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #00b2e9;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.huevo-character-badge-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
}

.huevo-character-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 18px;
  color: #ffffff;
}

.huevo-character-title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.huevo-character-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.huevo-character-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(79, 140, 255, 0.2);
}

.huevo-character-avatar svg {
  width: 22px;
  height: 22px;
  display: block;
}

.huevo-character-author-text {
  line-height: 1.15;
}

.huevo-character-author-text small {
  display: block;
  color: #9ea4b5;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.huevo-character-author-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.huevo-character-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.huevo-character-stat {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.huevo-character-stat-label {
  display: block;
  margin-bottom: 8px;
  color: #a0a7b9;
  font-size: 0.8rem;
  line-height: 1.2;
}

.huevo-character-stat-value {
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.huevo-character-stat-note {
  display: block;
  margin-top: 7px;
  color: #00b2e9;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 700;
}

.huevo-character-copy {
  flex: 1;
  margin-bottom: 20px;
}

.huevo-character-copy-item {
  margin-bottom: 16px;
}

.huevo-character-copy-item:last-child {
  margin-bottom: 0;
}

.huevo-character-copy-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.huevo-character-copy-item p {
  margin: 0;
  color: #c6cbda;
  font-size: 0.94rem;
  line-height: 1.7;
}

.huevo-character-copy-item .huevo-character-motto {
  color: #e6ebff;
  font-style: italic;
}

.huevo-character-cta {
  margin-top: auto;
}

.huevo-character-cta a {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  color: #101217;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.huevo-character-cta a:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

@media (max-width: 1199.98px) {
  .huevo-character-title {
    font-size: 1.8rem;
  }

  .huevo-character-media {
    height: 260px;
  }
}

@media (max-width: 991.98px) {
  .huevo-characters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .huevo-characters {
    padding: 68px 0;
  }

  .huevo-characters-grid {
    grid-template-columns: 1fr;
  }

  .huevo-character-media {
    height: 240px;
  }

  .huevo-character-title {
    font-size: 1.7rem;
  }

  .huevo-character-body {
    padding: 22px 18px 18px;
  }
}

/* ! =========================
   PRODUCT FORMS SECTION
========================= */

.huevo-product-forms {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 178, 233, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4f5f8 100%);
}

.huevo-product-forms-head {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.huevo-product-forms-head h2 {
  margin: 0 0 16px;
  color: #16181f;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.huevo-product-forms-head p {
  margin: 0;
  color: #616779;
  font-size: 1.05rem;
  line-height: 1.75;
}

.huevo-product-forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.huevo-product-form-card {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #111216 0%, #0b0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(15, 17, 25, 0.12);
}

/* ! =========================
   FORM COPY
========================= */

.huevo-form-copy {
  color: #ffffff;
  margin-bottom: 26px;
}

.huevo-form-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 178, 233, 0.14);
  color: #00b2e9;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.huevo-form-copy h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.huevo-form-copy p {
  margin: 0;
  color: #c6cbda;
  font-size: 0.98rem;
  line-height: 1.75;
}

.huevo-form-highlight {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6cbda;
  line-height: 1.7;
}

.huevo-form-highlight strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

/* ! =========================
   ANGIE FORM
========================= */

.huevo-form-box {
  margin-top: auto;
}

.huevo-form-box-palletizer {
  height: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* Nota del form */
.huevo-form-box-palletizer .note-contact-form {
  margin-bottom: 20px;
  color: #c6cbda;
  font-size: 1rem;
  line-height: 1.6;
}

/* Form in colonna singola */
.huevo-form-box-palletizer .angieform > div {
  display: block;
}

/* Gruppi generati dal CMS */
.huevo-form-box-palletizer .angieform .gruppo-others,
.huevo-form-box-palletizer .angieform [class*="Gruppo"],
.huevo-form-box-palletizer .angieform [class*="gruppo"] {
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
}

/* Campi */
.huevo-form-box-palletizer .form-group {
  width: 100%;
  margin-bottom: 16px;
}

/* Label */
.huevo-form-box-palletizer label {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

/* Input, select, textarea */
.huevo-form-box-palletizer input,
.huevo-form-box-palletizer select,
.huevo-form-box-palletizer textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #16181f;
  font-size: 0.96rem;
  box-shadow: none;
}

.huevo-form-box-palletizer select {
  appearance: auto;
  cursor: pointer;
}

.huevo-form-box-palletizer textarea {
  min-height: 130px;
  resize: vertical;
}

.huevo-form-box-palletizer input:focus,
.huevo-form-box-palletizer select:focus,
.huevo-form-box-palletizer textarea:focus {
  border-color: #00b2e9;
  box-shadow: 0 0 0 0.2rem rgba(0, 178, 233, 0.18);
  background: #ffffff;
  outline: none;
}

/* Checkbox privacy */
.huevo-form-box-palletizer .form-check,
.huevo-form-box-palletizer .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.huevo-form-box-palletizer input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border: 1.5px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
  appearance: auto;
  accent-color: #00b2e9;
  cursor: pointer;
}

.huevo-form-box-palletizer .form-check-input {
  position: static;
  margin-left: 0;
}

.huevo-form-box-palletizer .form-check-label,
.huevo-form-box-palletizer .form-check label,
.huevo-form-box-palletizer .checkbox label {
  display: inline;
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
}

.huevo-form-box-palletizer .form-check-label a,
.huevo-form-box-palletizer .form-check label a,
.huevo-form-box-palletizer .checkbox label a {
  color: #8fb3ff;
  text-decoration: underline;
}

/* Submit */
.huevo-form-box-palletizer .mt-4 {
  margin-top: 8px !important;
}

.huevo-form-box-palletizer button[type="submit"] {
  width: 100%;
  min-height: 58px;
  height: auto;
  padding: 14px 18px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(90deg, #00b2e9 0%, #4f8cff 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  box-shadow: 0 14px 28px rgba(79, 140, 255, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.huevo-form-box-palletizer button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(79, 140, 255, 0.26);
}

/* Campi obbligatori */
.huevo-form-box-palletizer > p {
  margin: 14px 0 0;
  color: #c6cbda;
  font-size: 0.9rem;
}

/* Errori */
.huevo-form-box-palletizer .invalid-feedback,
.huevo-form-box-palletizer .errorlist {
  margin-top: 6px;
  color: #ff7b7b;
  font-size: 0.86rem;
}

/* Messaggio successo */
.huevo-form-box-palletizer .alert-success {
  border-radius: 18px;
  border: none;
  padding: 18px 20px;
}

/* ! =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
  .huevo-product-forms-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .huevo-product-forms {
    padding: 68px 0;
  }

  .huevo-product-form-card {
    padding: 22px;
    border-radius: 26px;
  }
}

/* ! =========================
   ECOSYSTEM FEATURE SECTION
========================= */

.huevo-ecosystem-section {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 178, 233, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #f4f5f8 0%, #ffffff 100%);
}

.huevo-ecosystem-card {
  padding: clamp(32px, 5vw, 70px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 24, 31, 0.06);
  box-shadow: 0 28px 70px rgba(15, 17, 25, 0.08);
  overflow: hidden;
}

.huevo-ecosystem-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.huevo-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #ffffff;
  color: #16181f;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 17, 25, 0.05);
}

.huevo-section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00b2e9;
  display: inline-block;
}

.huevo-ecosystem-head h2 {
  margin: 0 0 18px;
  color: #16181f;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.huevo-ecosystem-head h2 span {
  color: #00b2e9;
}

.huevo-ecosystem-head p {
  max-width: 780px;
  margin: 0;
  color: #616779;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ! =========================
   MEDIA GALLERY
========================= */

.huevo-ecosystem-gallery {
  position: relative;
  min-height: 430px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(0, 178, 233, 0.1), transparent 48%),
    linear-gradient(135deg, #f9fafc 0%, #f1f3f8 100%);
  border: 1px solid rgba(22, 24, 31, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.huevo-ecosystem-gallery::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  top: 8%;
  left: 14%;
  border-radius: 50%;
  background: rgba(0, 178, 233, 0.08);
  filter: blur(38px);
  pointer-events: none;
}

.huevo-gallery-main,
.huevo-gallery-thumb {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 24, 31, 0.05);
  box-shadow: 0 18px 40px rgba(15, 17, 25, 0.08);
  overflow: hidden;
}

.huevo-gallery-main {
  min-height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.huevo-gallery-main img {
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(15, 17, 25, 0.14));
}

.huevo-gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.huevo-gallery-thumb {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.huevo-gallery-thumb img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(15, 17, 25, 0.1));
}

/* ! =========================
   FEATURE LIST
========================= */

.huevo-feature-list {
  display: flex;
  flex-direction: column;
}

.huevo-feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(22, 24, 31, 0.1);
}

.huevo-feature-item:first-child {
  padding-top: 0;
}

.huevo-feature-item.active::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #00b2e9;
}

.huevo-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  color: #16181f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15, 17, 25, 0.06);
}

.huevo-feature-icon svg {
  width: 21px;
  height: 21px;
}

.huevo-feature-item h3 {
  margin: 0 0 7px;
  color: #16181f;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 800;
}

.huevo-feature-item p {
  margin: 0;
  color: #4f5566;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ! =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .huevo-ecosystem-section {
    padding: 76px 0;
  }

  .huevo-ecosystem-head {
    margin-bottom: 34px;
  }

  .huevo-ecosystem-gallery {
    min-height: auto;
  }

  .huevo-gallery-main {
    min-height: 250px;
  }
}

@media (max-width: 767.98px) {
  .huevo-ecosystem-card {
    border-radius: 26px;
  }

  .huevo-ecosystem-head h2 {
    font-size: 2.25rem;
  }

  .huevo-ecosystem-gallery {
    padding: 18px;
    border-radius: 22px;
  }

  .huevo-gallery-main {
    min-height: 220px;
    padding: 20px;
  }

  .huevo-gallery-main img {
    max-height: 205px;
  }

  .huevo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .huevo-gallery-thumb {
    min-height: 140px;
  }

  .huevo-feature-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .huevo-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .huevo-feature-item.active::after {
    left: 52px;
  }
}

/* ! =========================
   FINAL CTA FORM SECTION
========================= */

.huevo-final-cta {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 178, 233, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(79, 140, 255, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4f5f8 100%);
}

.huevo-final-cta-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: linear-gradient(180deg, #15161b 0%, #090a0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(15, 17, 25, 0.18);
  overflow: hidden;
}

.huevo-final-cta-copy {
  height: 100%;
  padding: 8px 10px 8px 0;
  color: #ffffff;
}

.huevo-final-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 178, 233, 0.14);
  color: #00b2e9;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.huevo-final-cta-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00b2e9;
  display: inline-block;
}

.huevo-final-cta-copy h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.huevo-final-cta-copy p {
  max-width: 620px;
  margin: 0;
  color: #c6cbda;
  font-size: 1.05rem;
  line-height: 1.8;
}

.huevo-final-cta-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.huevo-final-cta-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.huevo-final-cta-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00b2e9 0%, #4f8cff 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 1px;
}

.huevo-final-cta-note {
  margin-top: 34px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6cbda;
  line-height: 1.7;
}

.huevo-final-cta-note strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

/* FORM CARD */

.huevo-final-form-card {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.huevo-final-form-head {
  margin-bottom: 24px;
}

.huevo-final-form-head h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.huevo-final-form-head p {
  margin: 0;
  color: #c6cbda;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Variante specifica form finale */
.huevo-form-box-final {
  height: auto;
}

/* Responsive */

@media (max-width: 991.98px) {
  .huevo-final-cta {
    padding: 76px 0;
  }

  .huevo-final-cta-copy {
    padding: 0;
  }

  .huevo-final-form-card {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .huevo-final-cta {
    padding: 68px 0;
  }

  .huevo-final-cta-card {
    border-radius: 28px;
  }

  .huevo-final-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .huevo-final-cta-copy h2 {
    font-size: 2.35rem;
  }
}
