/* ── LAYOUT ── */
.df-audit {
  padding: 100px 0 80px;
  min-height: 100vh;
}

.df-audit__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: auto 1fr;
  gap: 32px 56px;
}

.df-audit__top {
  grid-column: 1;
  grid-row: 1;
}

.df-audit__bottom {
  grid-column: 1;
  grid-row: 2;
}

.df-audit__calendly-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* ── PANEL SUPERIOR ── */
.df-audit__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(75,155,173,0.3);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 24px;
}

.df-audit__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
}

.df-audit__title em { font-style: normal; color: var(--accent); }

.df-audit__sub { font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 0; }


/* ── PARA QUIÉN ES ── */
.df-for {
  background: var(--white);
  border: 1px solid rgba(25,62,104,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 22px; margin-bottom: 20px;
}

.df-for__title {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-md); margin-bottom: 14px;
}

.df-for__list { list-style: none; }

.df-for__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #555; line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid rgba(25,62,104,0.06);
}

.df-for__list li:last-child { border-bottom: none; padding-bottom: 0; }

.df-for__list li::before {
  content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── TENSION ── */
.df-audit__tension {
  background: linear-gradient(135deg, rgba(25,62,104,0.03) 0%, rgba(75,155,173,0.06) 100%);
  border: 1px solid rgba(75,155,173,0.2);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px; margin-bottom: 24px;
}

.df-audit__tension p { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.65; }
.df-audit__tension p span { color: var(--accent); }

/* ── WHAT LIST ── */
.df-audit__what-title {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-md); margin-bottom: 12px;
}

.df-audit__list { list-style: none; margin-bottom: 24px; }

.df-audit__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #555; margin-bottom: 10px; line-height: 1.5;
}

.df-audit__list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── CHIP DAVID ── */
.df-chip {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid rgba(25,62,104,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.df-chip__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 18px; flex-shrink: 0;
}

.df-chip__name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.df-chip__role { font-size: 12px; color: var(--gray-md); }

.df-chip__badge {
  margin-left: auto; font-size: 11px; font-weight: 700;
  color: var(--teal); background: rgba(75,155,173,0.1);
  padding: 4px 10px; border-radius: 20px; white-space: nowrap;
}

/* ── CALENDLY ── */
.df-audit__calendly {
  background: var(--white);
  border: 1px solid rgba(25,62,104,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 700px;
}

.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ── TRUST STRIP ── */
.df-trust {
  background: var(--white);
  border-top: 1px solid rgba(25,62,104,0.06);
  padding: 28px 0; margin-top: 56px;
}

.df-trust__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}

.df-trust__item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #777; }
.df-trust__item strong { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: block; }
.df-trust__icon { font-size: 20px; flex-shrink: 0; }
.df-trust__divider { width: 1px; height: 32px; background: var(--bg-gray); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .df-audit__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .df-audit__top { grid-column: 1; grid-row: 1; }
  .df-audit__calendly-wrap { grid-column: 1; grid-row: 2; }
  .df-audit__bottom { grid-column: 1; grid-row: 3; }
  .df-trust__divider { display: none; }
}

@media (max-width: 600px) {
  .df-audit { padding: 88px 0 60px; }
  .df-trust__inner { flex-direction: column; gap: 16px; }
	.df-audit__calendly {
  min-height: 500px;
}

.calendly-inline-widget {
  height: 500px;
}
}